Click or drag to resize
IAggregateFluent<TResult>.Project<TNewResult> Method
Appends a project stage to the pipeline.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.3.0
Syntax
IAggregateFluent<TNewResult> Project<TNewResult>(
	ProjectionDefinition<TResult, TNewResult> projection
)

Parameters

projection
Type: MongoDB.Driver.ProjectionDefinition<TResult, TNewResult>
The projection.

Type Parameters

TNewResult
The type of the result of the stage.

Return Value

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