Click or drag to resize

PipelineStageDefinitionBuilderBucketAutoForLinq2TInput, TValue, TOutput Method

Creates a $bucketAuto stage (this method can only be used with LINQ2).

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public static PipelineStageDefinition<TInput, TOutput> BucketAutoForLinq2<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