AggregateFluentBaseTResultReplaceRootTNewResult Method |
Appends a $replaceRoot stage to the pipeline.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public virtual IAggregateFluent<TNewResult> ReplaceRoot<TNewResult>(
AggregateExpressionDefinition<TResult, TNewResult> newRoot
)
Public Overridable Function ReplaceRoot(Of TNewResult) (
newRoot As AggregateExpressionDefinition(Of TResult, TNewResult)
) As IAggregateFluent(Of TNewResult)
abstract ReplaceRoot :
newRoot : AggregateExpressionDefinition<'TResult, 'TNewResult> -> IAggregateFluent<'TNewResult>
override ReplaceRoot :
newRoot : AggregateExpressionDefinition<'TResult, 'TNewResult> -> IAggregateFluent<'TNewResult>
Parameters
- newRoot
- Type: MongoDB.DriverAggregateExpressionDefinitionTResult, TNewResult
The new root.
Type Parameters
- TNewResult
- The type of the new result.
Return Value
Type:
IAggregateFluentTNewResultThe fluent aggregate interface.
Implements
IAggregateFluentTResultReplaceRootTNewResult(AggregateExpressionDefinitionTResult, TNewResult)See Also