Method Sample
| MongoDB CSharp Driver API Reference (original) (raw)
Namespace
Assembly
MongoDB.Driver.dll
Sample<TInput, TOutput>(PipelineDefinition<TInput, TOutput>, long)
Appends a $sample stage to the pipeline.
public static PipelineDefinition<TInput, TOutput> Sample<TInput, TOutput>(this PipelineDefinition<TInput, TOutput> pipeline, long size)Parameters
pipeline PipelineDefinition<TInput, TOutput>
The pipeline.
size long
The sample size.
Returns
PipelineDefinition<TInput, TOutput>
A new pipeline with an additional stage.
Type Parameters
TInput
The type of the input documents.
TOutput
The type of the output documents.