GridSort<TGridItem>.ThenDescending<U> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Updates a GridSort<TGridItem> instance by appending a further sorting rule.
public Microsoft.AspNetCore.Components.QuickGrid.GridSort<TGridItem> ThenDescending<U> (System.Linq.Expressions.Expression<Func<TGridItem,U>> expression);
member this.ThenDescending : System.Linq.Expressions.Expression<Func<'GridItem, 'U>> -> Microsoft.AspNetCore.Components.QuickGrid.GridSort<'GridItem>
Public Function ThenDescending(Of U) (expression As Expression(Of Func(Of TGridItem, U))) As GridSort(Of TGridItem)
Type Parameters
- U
The type of the expression's value.
Parameters
- expression
- Expression<Func<TGridItem,U>>
An expression defining how a set of TGridItem
instances are to be sorted.
Returns
A GridSort<TGridItem> instance representing the specified sorting rule.