PipelineStageDefinitionBuilderSetWindowFieldsTInput, TWindowFields Method (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, TWindowFields>(
AggregateExpressionDefinition<ISetWindowFieldsPartition<TInput>, TWindowFields> output
)
Public Shared Function SetWindowFields(Of TInput, TWindowFields) (
output As AggregateExpressionDefinition(Of ISetWindowFieldsPartition(Of TInput), TWindowFields)
) As PipelineStageDefinition(Of TInput, BsonDocument)
static member SetWindowFields :
output : AggregateExpressionDefinition<ISetWindowFieldsPartition<'TInput>, 'TWindowFields> -> PipelineStageDefinition<'TInput, BsonDocument>
Parameters
- output
- Type: MongoDB.DriverAggregateExpressionDefinitionISetWindowFieldsPartitionTInput, TWindowFields
The window fields expression.
Type Parameters
- TInput
- The type of the input documents.
- TWindowFields
- The type of the added window fields.
Return Value
Type:
PipelineStageDefinitionTInput,
BsonDocumentThe stage.
See Also