Ejemplo n.º 1
0
        public QueryBuilder <T> ProjectionInclude(Expression <Func <T, object> > field)
        {
            if (Projection == null)
            {
                Projection = ProjectionBuilder.Include(field);
            }
            else
            {
                Projection = Projection.Include(field);
            }

            return(this);
        }