AggregateFluentBase<TResult>.As<TNewResult> Method |
Changes the result type of the pipeline.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntax public abstract IAggregateFluent<TNewResult> As<TNewResult>(
IBsonSerializer<TNewResult> newResultSerializer
)
Public MustOverride Function As(Of TNewResult) (
newResultSerializer As IBsonSerializer(Of TNewResult)
) As IAggregateFluent(Of TNewResult)
abstract As :
newResultSerializer : IBsonSerializer<'TNewResult> -> IAggregateFluent<'TNewResult>
Parameters
- newResultSerializer
- Type: MongoDB.Bson.Serialization.IBsonSerializer<TNewResult>
The new result serializer.
Type Parameters
- TNewResult
- The type of the new result.
Return Value
Type:
IAggregateFluent<TNewResult>The fluent aggregate interface.
Implements
IAggregateFluent<TResult>.As<TNewResult>(IBsonSerializer<TNewResult>)See Also