| IAggregateFluentTResultReplaceRootTNewResult Method  | 
 
            Appends a $replaceRoot stage to the pipeline.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
 Syntax
SyntaxIAggregateFluent<TNewResult> ReplaceRoot<TNewResult>(
	AggregateExpressionDefinition<TResult, TNewResult> newRoot
)
Function ReplaceRoot(Of TNewResult) ( 
	newRoot As AggregateExpressionDefinition(Of TResult, TNewResult)
) As IAggregateFluent(Of TNewResult)
abstract 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.
 See Also
See Also