Click or drag to resize

PipelineDefinitionBuilderDensifyTInput, TOutput Method (PipelineDefinitionTInput, TOutput, FieldDefinitionTOutput, DensifyRange, IEnumerableFieldDefinitionTOutput)

Appends a $densify stage to the pipeline.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.16.0+eeafbea0921243a5868b81984e1083a07c1f75bc
Syntax
public static PipelineDefinition<TInput, TOutput> Densify<TInput, TOutput>(
	this PipelineDefinition<TInput, TOutput> pipeline,
	FieldDefinition<TOutput> field,
	DensifyRange range,
	IEnumerable<FieldDefinition<TOutput>> partitionByFields = null
)

Parameters

pipeline
Type: MongoDB.DriverPipelineDefinitionTInput, TOutput
The pipeline.
field
Type: MongoDB.DriverFieldDefinitionTOutput
The field.
range
Type: MongoDB.DriverDensifyRange
The range.
partitionByFields (Optional)
Type: System.Collections.GenericIEnumerableFieldDefinitionTOutput
The partition by fields.

Type Parameters

TInput
The type of the input documents.
TOutput
The type of the output documents.

Return Value

Type: PipelineDefinitionTInput, TOutput
A new pipeline with an additional stage.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type PipelineDefinitionTInput, TOutput. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also