Click or drag to resize

IAggregateFluentTResultBucketTValue, TNewResult Method (AggregateExpressionDefinitionTResult, TValue, IEnumerableTValue, ProjectionDefinitionTResult, TNewResult, AggregateBucketOptionsTValue)

Appends a $bucket stage to the pipeline with a custom projection.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntax
IAggregateFluent<TNewResult> Bucket<TValue, TNewResult>(
	AggregateExpressionDefinition<TResult, TValue> groupBy,
	IEnumerable<TValue> boundaries,
	ProjectionDefinition<TResult, TNewResult> output,
	AggregateBucketOptions<TValue> options = null
)

Parameters

groupBy
Type: MongoDB.DriverAggregateExpressionDefinitionTResult, TValue
The expression providing the value to group by.
boundaries
Type: System.Collections.GenericIEnumerableTValue
The bucket boundaries.
output
Type: MongoDB.DriverProjectionDefinitionTResult, TNewResult
The output projection.
options (Optional)
Type: MongoDB.DriverAggregateBucketOptionsTValue
The options.

Type Parameters

TValue
The type of the value.
TNewResult
The type of the new result.

Return Value

Type: IAggregateFluentTNewResult
The fluent aggregate interface.
See Also