PushEachOptionsBuilderTValueSortDescending Method |
Sorts the array in descending order.
Namespace:
MongoDB.Driver.Builders
Assembly:
MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax public PushEachOptionsBuilder<TValue> SortDescending(
params Expression<Func<TValue, Object>>[] memberExpressions
)
Public Function SortDescending (
ParamArray memberExpressions As Expression(Of Func(Of TValue, Object))()
) As PushEachOptionsBuilder(Of TValue)
member SortDescending :
memberExpressions : Expression<Func<'TValue, Object>>[] -> PushEachOptionsBuilder<'TValue>
Parameters
- memberExpressions
- Type: System.Linq.ExpressionsExpressionFuncTValue, Object
The member expressions.
Return Value
Type:
PushEachOptionsBuilderTValueThe builder.
See Also