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