PipelineStageDefinitionBuilderBucketAutoTInput, TValue, TOutput Method (AggregateExpressionDefinitionTInput, TValue, Int32, ProjectionDefinitionTInput, TOutput, AggregateBucketAutoOptions) |
Creates a $bucketAuto stage.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.15.0+f503bf610759c13f78cff9a3c01e91453185d2ed
Syntax public static PipelineStageDefinition<TInput, TOutput> BucketAuto<TInput, TValue, TOutput>(
AggregateExpressionDefinition<TInput, TValue> groupBy,
int buckets,
ProjectionDefinition<TInput, TOutput> output,
AggregateBucketAutoOptions options = null
)
Public Shared Function BucketAuto(Of TInput, TValue, TOutput) (
groupBy As AggregateExpressionDefinition(Of TInput, TValue),
buckets As Integer,
output As ProjectionDefinition(Of TInput, TOutput),
Optional options As AggregateBucketAutoOptions = Nothing
) As PipelineStageDefinition(Of TInput, TOutput)
static member BucketAuto :
groupBy : AggregateExpressionDefinition<'TInput, 'TValue> *
buckets : int *
output : ProjectionDefinition<'TInput, 'TOutput> *
?options : AggregateBucketAutoOptions
(* Defaults:
let _options = defaultArg options null
*)
-> PipelineStageDefinition<'TInput, 'TOutput>
Parameters
- groupBy
- Type: MongoDB.DriverAggregateExpressionDefinitionTInput, TValue
The group by expression. - buckets
- Type: SystemInt32
The number of buckets. - output
- Type: MongoDB.DriverProjectionDefinitionTInput, TOutput
The output projection. - options (Optional)
- Type: MongoDB.DriverAggregateBucketAutoOptions
The options.
Type Parameters
- TInput
- The type of the input documents.
- TValue
- The type of the values.
- TOutput
- The type of the output documents.
Return Value
Type:
PipelineStageDefinitionTInput,
TOutputThe stage.
See Also