2 instantiations of SortedProperty
Microsoft.AspNetCore.Components.QuickGrid (2)
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 });
7 references to SortedProperty
Microsoft.AspNetCore.Components.QuickGrid (7)
Columns\GridSort.cs (5)
23private IReadOnlyCollection<SortedProperty>? _cachedPropertyListAscending; 24private IReadOnlyCollection<SortedProperty>? _cachedPropertyListDescending; 103internal IReadOnlyCollection<SortedProperty> ToPropertyList(bool ascending) 117private List<SortedProperty> BuildPropertyList(bool ascending) 119var result = new List<SortedProperty>
GridItemsProviderRequest.cs (2)
68public IReadOnlyCollection<SortedProperty> GetSortByProperties() => 69SortByColumn?.SortBy?.ToPropertyList(SortByAscending) ?? Array.Empty<SortedProperty>();