Breeze.PocoMetadata.NorthwindEntityDescriptor.Include C# (CSharp) Метод

Include() публичный Метод

public Include ( Type type ) : bool
type System.Type
Результат bool
        public override bool Include(Type type)
        {
            if (type.Name.Contains("Context")) return false;
            if (type.Name.Contains("CustomerMetaData")) return false;
            if (type.Name.Contains("CategoryMulti")) return false;
            if (type.Name.Contains("ProductMulti")) return false;
            if (type.Name.Contains("Validator")) return false;
            if (type.Name.Contains("NextId")) return false;
            return true;
        }