AggregateFluentBaseTResultDensify Method (FieldDefinitionTResult, DensifyRange, IEnumerableFieldDefinitionTResult) |
Appends a $densify stage to the pipeline.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public virtual IAggregateFluent<TResult> Densify(
FieldDefinition<TResult> field,
DensifyRange range,
IEnumerable<FieldDefinition<TResult>> partitionByFields = null
)
Public Overridable Function Densify (
field As FieldDefinition(Of TResult),
range As DensifyRange,
Optional partitionByFields As IEnumerable(Of FieldDefinition(Of TResult)) = Nothing
) As IAggregateFluent(Of TResult)
abstract Densify :
field : FieldDefinition<'TResult> *
range : DensifyRange *
?partitionByFields : IEnumerable<FieldDefinition<'TResult>>
(* Defaults:
let _partitionByFields = defaultArg partitionByFields null
*)
-> IAggregateFluent<'TResult>
override Densify :
field : FieldDefinition<'TResult> *
range : DensifyRange *
?partitionByFields : IEnumerable<FieldDefinition<'TResult>>
(* Defaults:
let _partitionByFields = defaultArg partitionByFields null
*)
-> IAggregateFluent<'TResult>
Parameters
- field
- Type: MongoDB.DriverFieldDefinitionTResult
The field. - range
- Type: MongoDB.DriverDensifyRange
The range. - partitionByFields (Optional)
- Type: System.Collections.GenericIEnumerableFieldDefinitionTResult
The fields to partition by.
Return Value
Type:
IAggregateFluentTResultThe fluent aggregate interface.
Implements
IAggregateFluentTResultDensify(FieldDefinitionTResult, DensifyRange, IEnumerableFieldDefinitionTResult)See Also