Click or drag to resize

PipelineStageDefinitionBuilderBucketTInput, TValue Method (ExpressionFuncTInput, TValue, IEnumerableTValue, AggregateBucketOptionsTValue, ExpressionTranslationOptions)

Creates a $bucket stage.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntax
public static PipelineStageDefinition<TInput, AggregateBucketResult<TValue>> Bucket<TInput, TValue>(
	Expression<Func<TInput, TValue>> groupBy,
	IEnumerable<TValue> boundaries,
	AggregateBucketOptions<TValue> options = null,
	ExpressionTranslationOptions translationOptions = null
)

Parameters

groupBy
Type: System.Linq.ExpressionsExpressionFuncTInput, TValue
The group by expression.
boundaries
Type: System.Collections.GenericIEnumerableTValue
The boundaries.
options (Optional)
Type: MongoDB.DriverAggregateBucketOptionsTValue
The options.
translationOptions (Optional)
Type: MongoDB.DriverExpressionTranslationOptions
The translation options.

Type Parameters

TInput
The type of the input documents.
TValue
The type of the values.

Return Value

Type: PipelineStageDefinitionTInput, AggregateBucketResultTValue
The stage.
See Also