PipelineStageDefinitionBuilderSortByCountTInput, TValue Method (AggregateExpressionDefinitionTInput, TValue) |
Creates a $sortByCount stage.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.15.0+f503bf610759c13f78cff9a3c01e91453185d2ed
Syntax public static PipelineStageDefinition<TInput, AggregateSortByCountResult<TValue>> SortByCount<TInput, TValue>(
AggregateExpressionDefinition<TInput, TValue> value
)
Public Shared Function SortByCount(Of TInput, TValue) (
value As AggregateExpressionDefinition(Of TInput, TValue)
) As PipelineStageDefinition(Of TInput, AggregateSortByCountResult(Of TValue))
static member SortByCount :
value : AggregateExpressionDefinition<'TInput, 'TValue> -> PipelineStageDefinition<'TInput, AggregateSortByCountResult<'TValue>>
Parameters
- value
- Type: MongoDB.DriverAggregateExpressionDefinitionTInput, TValue
The value expression.
Type Parameters
- TInput
- The type of the input documents.
- TValue
- The type of the values.
Return Value
Type:
PipelineStageDefinitionTInput,
AggregateSortByCountResultTValueThe stage.
See Also