Method ThenByDescending
ThenByDescending<TResult>(IOrderedAggregateFluent<TResult>, Expression<Func<TResult, object>>)
Modifies the current sort stage by appending a descending field specification to it.
public static IOrderedAggregateFluent<TResult> ThenByDescending<TResult>(this IOrderedAggregateFluent<TResult> aggregate, Expression<Func<TResult, object>> field)Parameters
- aggregateIOrderedAggregateFluent<TResult>
- The aggregate. 
- fieldExpression<Func<TResult, object>>
- The field to sort by. 
Returns
- IOrderedAggregateFluent<TResult>
- The fluent aggregate interface. 
Type Parameters
- TResult
- The type of the result.