IAggregateFluentTResultAppendStageTNewResult Method |
Appends the stage to the pipeline.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.8.0+cc573f3e1f48f39162b4b680e921a623e127e8fa
SyntaxIAggregateFluent<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