Click or drag to resize

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
)

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