Click or drag to resize
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.4.1
Syntax
public static PipelineStageDefinition<TInput, TOutput> BucketAuto<TInput, TValue, TOutput>(
	AggregateExpressionDefinition<TInput, TValue> groupBy,
	int buckets,
	ProjectionDefinition<TInput, TOutput> output,
	AggregateBucketAutoOptions options = null
)

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, TOutput
The stage.
See Also