Class AggregateUnwindOptions<TResult>
Options for the $unwind aggregation stage.
public class AggregateUnwindOptions<TResult>
Type Parameters
TResult
The type of the result.
- Inheritance
-
AggregateUnwindOptions<TResult>
- Inherited Members
Properties
IncludeArrayIndex
Gets or sets the field with which to include the array index.
public FieldDefinition<TResult> IncludeArrayIndex { get; set; }
Property Value
- FieldDefinition<TResult>
PreserveNullAndEmptyArrays
Gets or sets whether to preserve null and empty arrays.
public bool? PreserveNullAndEmptyArrays { get; set; }
Property Value
- bool?
ResultSerializer
Gets or sets the result serializer.
public IBsonSerializer<TResult> ResultSerializer { get; set; }
Property Value
- IBsonSerializer<TResult>