Click or drag to resize

IAggregateFluent<TResult>.Bucket<TValue> Method (AggregateExpressionDefinition<TResult, TValue>, IEnumerable<TValue>, AggregateBucketOptions<TValue>)

Appends a $bucket stage to the pipeline.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
Syntax
IAggregateFluent<AggregateBucketResult<TValue>> Bucket<TValue>(
	AggregateExpressionDefinition<TResult, TValue> groupBy,
	IEnumerable<TValue> boundaries,
	AggregateBucketOptions<TValue> options = null
)

Parameters

groupBy
Type: MongoDB.Driver.AggregateExpressionDefinition<TResult, TValue>
The expression providing the value to group by.
boundaries
Type: System.Collections.Generic.IEnumerable<TValue>
The bucket boundaries.
options (Optional)
Type: MongoDB.Driver.AggregateBucketOptions<TValue>
The options.

Type Parameters

TValue
The type of the value.

Return Value

Type: IAggregateFluent<AggregateBucketResult<TValue>>
The fluent aggregate interface.
See Also