예제 #1
0
        public CollectionPopulatingExpression([NotNull] RelationalCollectionShaperExpression parent, [NotNull] Type type, bool include)
        {
            Check.NotNull(parent, nameof(parent));
            Check.NotNull(type, nameof(type));

            Parent    = parent;
            Type      = type;
            IsInclude = include;
        }
 public CollectionPopulatingExpression(RelationalCollectionShaperExpression parent, Type type, bool include)
 {
     Parent    = parent;
     Type      = type;
     IsInclude = include;
 }