5 references to Descending
Microsoft.AspNetCore.Components.QuickGrid (5)
Columns\GridSort.cs (2)
121new SortedProperty { PropertyName = ToPropertyName(_firstExpression.Item1), Direction = (_firstExpression.Item2 ^ ascending) ? SortDirection.Descending : SortDirection.Ascending } 128result.Add(new SortedProperty { PropertyName = ToPropertyName(thenLambda), Direction = (thenAscending ^ ascending) ? SortDirection.Descending : SortDirection.Ascending });
QuickGrid.razor.cs (2)
224_sortByAscending = initialSortDirection.Value != SortDirection.Descending; 251SortDirection.Descending => false,
SortDirection.cs (1)
13/// the sort order will automatically toggle between <see cref="Ascending"/> and <see cref="Descending"/> on successive calls, and