IAggregateFluentTResultDensify Method (FieldDefinitionTResult, DensifyRange, FieldDefinitionTResult) |
Appends a $densify stage to the pipeline.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
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