ProjectionDefinitionBuilderTSourceSlice Method (ExpressionFuncTSource, Object, Int32) |
Creates an array slice projection.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public ProjectionDefinition<TSource> Slice(
Expression<Func<TSource, Object>> field,
int limit
)
Public Function Slice (
field As Expression(Of Func(Of TSource, Object)),
limit As Integer
) As ProjectionDefinition(Of TSource)
member Slice :
field : Expression<Func<'TSource, Object>> *
limit : int -> ProjectionDefinition<'TSource>
Parameters
- field
- Type: System.Linq.ExpressionsExpressionFuncTSource, Object
The field. - limit
- Type: SystemInt32
The limit.
Return Value
Type:
ProjectionDefinitionTSource
An array slice projection.
See Also