Click or drag to resize
PipelineStageDefinitionBuilderBucketTInput, TValue Method (AggregateExpressionDefinitionTInput, TValue, IEnumerableTValue, AggregateBucketOptionsTValue)
Creates a $bucket stage.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.4.1
Syntax
public static PipelineStageDefinition<TInput, AggregateBucketResult<TValue>> Bucket<TInput, TValue>(
	AggregateExpressionDefinition<TInput, TValue> groupBy,
	IEnumerable<TValue> boundaries,
	AggregateBucketOptions<TValue> options = null
)

Parameters

groupBy
Type: MongoDB.DriverAggregateExpressionDefinitionTInput, TValue
The group by expression.
boundaries
Type: System.Collections.GenericIEnumerableTValue
The boundaries.
options (Optional)
Type: MongoDB.DriverAggregateBucketOptionsTValue
The 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