Click or drag to resize
IAggregateFluentTResultUnwindTNewResult Method
Appends an unwind stage to the pipeline.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.0.1
Syntax
IAggregateFluent<TNewResult> Unwind<TNewResult>(
	FieldDefinition<TResult> field,
	IBsonSerializer<TNewResult> newResultSerializer = null
)

Parameters

field
Type: MongoDB.DriverFieldDefinitionTResult
The field.
newResultSerializer (Optional)
Type: MongoDB.Bson.SerializationIBsonSerializerTNewResult
The new result serializer.

Type Parameters

TNewResult
The type of the result of the stage.

Return Value

Type: IAggregateFluentTNewResult
The fluent aggregate interface.
See Also