ProjectionDefinitionBuilderTSourceExclude Method (ExpressionFuncTSource, Object) |
Creates a projection that excludes a field.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.8.0+cc573f3e1f48f39162b4b680e921a623e127e8fa
Syntax public ProjectionDefinition<TSource> Exclude(
Expression<Func<TSource, Object>> field
)
Public Function Exclude (
field As Expression(Of Func(Of TSource, Object))
) As ProjectionDefinition(Of TSource)
member Exclude :
field : Expression<Func<'TSource, Object>> -> ProjectionDefinition<'TSource>
Parameters
- field
- Type: System.Linq.ExpressionsExpressionFuncTSource, Object
The field.
Return Value
Type:
ProjectionDefinitionTSource
An exclusion projection.
See Also