Method Exclude
Exclude<TDocument>(ProjectionDefinition<TDocument>, FieldDefinition<TDocument>)
Combines an existing projection with a projection that excludes a field.
public static ProjectionDefinition<TDocument> Exclude<TDocument>(this ProjectionDefinition<TDocument> projection, FieldDefinition<TDocument> field)
Parameters
projection
ProjectionDefinition<TDocument>The projection.
field
FieldDefinition<TDocument>The field.
Returns
- ProjectionDefinition<TDocument>
A combined projection.
Type Parameters
TDocument
The type of the document.
Exclude<TDocument>(ProjectionDefinition<TDocument>, Expression<Func<TDocument, object>>)
Combines an existing projection with a projection that excludes a field.
public static ProjectionDefinition<TDocument> Exclude<TDocument>(this ProjectionDefinition<TDocument> projection, Expression<Func<TDocument, object>> field)
Parameters
projection
ProjectionDefinition<TDocument>The projection.
field
Expression<Func<TDocument, object>>The field.
Returns
- ProjectionDefinition<TDocument>
A combined projection.
Type Parameters
TDocument
The type of the document.