Breeze.PocoMetadata.NorthwindEntityDescriptor.IsComplexType C# (CSharp) Method

IsComplexType() public method

public IsComplexType ( Type type ) : bool
type System.Type
return bool
        public override bool IsComplexType(Type type)
        {
            if (type.Name == "Location") return true;
            return false;
        }