1 write to _asyncQueryExecutor
Microsoft.AspNetCore.Components.QuickGrid (1)
QuickGrid.razor.cs (1)
186
_asyncQueryExecutor
= AsyncQueryExecutorSupplier.GetAsyncQueryExecutor(Services, Items);
4 references to _asyncQueryExecutor
Microsoft.AspNetCore.Components.QuickGrid (4)
QuickGrid.razor.cs (4)
378
var totalItemCount =
_asyncQueryExecutor
is null ? Items.Count() : await
_asyncQueryExecutor
.CountAsync(Items);
384
var resultArray =
_asyncQueryExecutor
is null ? result.ToArray() : await
_asyncQueryExecutor
.ToArrayAsync(result);