IAggregateFluentTResultAppendStageTNewResult Method |
Appends the stage to the pipeline.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax IAggregateFluent<TNewResult> AppendStage<TNewResult>(
PipelineStageDefinition<TResult, TNewResult> stage
)
Function AppendStage(Of TNewResult) (
stage As PipelineStageDefinition(Of TResult, TNewResult)
) As IAggregateFluent(Of TNewResult)
abstract AppendStage :
stage : PipelineStageDefinition<'TResult, 'TNewResult> -> IAggregateFluent<'TNewResult>
Parameters
- stage
- Type: MongoDB.DriverPipelineStageDefinitionTResult, TNewResult
The stage.
Type Parameters
- TNewResult
- The type of the result of the stage.
Return Value
Type:
IAggregateFluentTNewResultThe fluent aggregate interface.
See Also