Exemple #1
0
        public QueryBuilder <T> ProjectionExclude(Expression <Func <T, object> > field)
        {
            if (Projection == null)
            {
                Projection = ProjectionBuilder.Exclude(field);
            }
            else
            {
                Projection = Projection.Exclude(field);
            }

            return(this);
        }