Click or drag to resize
PipelineStageDefinitionBuilderBucketAutoTInput, TValue, TOutput Method (ExpressionFuncTInput, TValue, Int32, ExpressionFuncIGroupingTValue, TInput, TOutput, AggregateBucketAutoOptions, ExpressionTranslationOptions)
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>(
	Expression<Func<TInput, TValue>> groupBy,
	int buckets,
	Expression<Func<IGrouping<TValue, TInput>, TOutput>> output,
	AggregateBucketAutoOptions options = null,
	ExpressionTranslationOptions translationOptions = null
)

Parameters

groupBy
Type: System.Linq.ExpressionsExpressionFuncTInput, TValue
The group by expression.
buckets
Type: SystemInt32
The number of buckets.
output
Type: System.Linq.ExpressionsExpressionFuncIGroupingTValue, TInput, TOutput
The output projection.
options (Optional)
Type: MongoDB.DriverAggregateBucketAutoOptions
The options (optional).
translationOptions (Optional)
Type: MongoDB.DriverExpressionTranslationOptions
The translation options.

Type Parameters

TInput
The type of the input documents.
TValue
The type of the output documents.
TOutput
The type of the output documents.

Return Value

Type: PipelineStageDefinitionTInput, TOutput
The stage.
See Also