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