IAggregateFluentTResultDensify Method (FieldDefinitionTResult, DensifyRange, FieldDefinitionTResult) |
Appends a $densify stage to the pipeline.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.18.0+554c799eb1ec8dd732f16c739387f6664df1ba7a
Syntax IAggregateFluent<TResult> Densify(
FieldDefinition<TResult> field,
DensifyRange range,
params FieldDefinition<TResult>[] partitionByFields
)
Function Densify (
field As FieldDefinition(Of TResult),
range As DensifyRange,
ParamArray partitionByFields As FieldDefinition(Of TResult)()
) As IAggregateFluent(Of TResult)
abstract Densify :
field : FieldDefinition<'TResult> *
range : DensifyRange *
partitionByFields : FieldDefinition<'TResult>[] -> IAggregateFluent<'TResult>
Parameters
- field
- Type: MongoDB.DriverFieldDefinitionTResult
The field. - range
- Type: MongoDB.DriverDensifyRange
The range. - partitionByFields
- Type: MongoDB.DriverFieldDefinitionTResult
The fields to partition by.
Return Value
Type:
IAggregateFluentTResultThe fluent aggregate interface.
See Also