AggregateFluentBaseTResultProjectTNewResult Method  | 
 
            Appends a project stage to the pipeline.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic abstract IAggregateFluent<TNewResult> Project<TNewResult>(
	ProjectionDefinition<TResult, TNewResult> projection
)
Public MustOverride Function Project(Of TNewResult) ( 
	projection As ProjectionDefinition(Of TResult, TNewResult)
) As IAggregateFluent(Of TNewResult)
abstract Project : 
        projection : ProjectionDefinition<'TResult, 'TNewResult> -> IAggregateFluent<'TNewResult> 
Parameters
- projection
 - Type: MongoDB.DriverProjectionDefinitionTResult, TNewResult
The projection. 
Type Parameters
- TNewResult
 - The type of the result of the stage.
 
Return Value
Type: 
IAggregateFluentTNewResult
            The fluent aggregate interface.
            
Implements
IAggregateFluentTResultProjectTNewResult(ProjectionDefinitionTResult, TNewResult)
See Also