PipelineStageDefinitionBuilderLimitTInput Method |
Creates a $limit stage.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.15.0+f503bf610759c13f78cff9a3c01e91453185d2ed
Syntax public static PipelineStageDefinition<TInput, TInput> Limit<TInput>(
int limit
)
Public Shared Function Limit(Of TInput) (
limit As Integer
) As PipelineStageDefinition(Of TInput, TInput)
static member Limit :
limit : int -> PipelineStageDefinition<'TInput, 'TInput>
Parameters
- limit
- Type: SystemInt32
The limit.
Type Parameters
- TInput
- The type of the input documents.
Return Value
Type:
PipelineStageDefinitionTInput,
TInputThe stage.
See Also