PipelineStageDefinitionBuilderSetWindowFieldsTInput, TPartitionBy, TWindowFields Method (AggregateExpressionDefinitionTInput, TPartitionBy, AggregateExpressionDefinitionISetWindowFieldsPartitionTInput, TWindowFields) |
Create a $setWindowFields stage.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.15.0+f503bf610759c13f78cff9a3c01e91453185d2ed
Syntax public static PipelineStageDefinition<TInput, BsonDocument> SetWindowFields<TInput, TPartitionBy, TWindowFields>(
AggregateExpressionDefinition<TInput, TPartitionBy> partitionBy,
AggregateExpressionDefinition<ISetWindowFieldsPartition<TInput>, TWindowFields> output
)
Public Shared Function SetWindowFields(Of TInput, TPartitionBy, TWindowFields) (
partitionBy As AggregateExpressionDefinition(Of TInput, TPartitionBy),
output As AggregateExpressionDefinition(Of ISetWindowFieldsPartition(Of TInput), TWindowFields)
) As PipelineStageDefinition(Of TInput, BsonDocument)
static member SetWindowFields :
partitionBy : AggregateExpressionDefinition<'TInput, 'TPartitionBy> *
output : AggregateExpressionDefinition<ISetWindowFieldsPartition<'TInput>, 'TWindowFields> -> PipelineStageDefinition<'TInput, BsonDocument>
Parameters
- partitionBy
- Type: MongoDB.DriverAggregateExpressionDefinitionTInput, TPartitionBy
The partitionBy expression. - output
- Type: MongoDB.DriverAggregateExpressionDefinitionISetWindowFieldsPartitionTInput, TWindowFields
The window fields expression.
Type Parameters
- TInput
- The type of the input documents.
- TPartitionBy
- The type of the value to partition by.
- TWindowFields
- The type of the added window fields.
Return Value
Type:
PipelineStageDefinitionTInput,
BsonDocumentThe stage.
See Also