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)
378var totalItemCount = _asyncQueryExecutor is null ? Items.Count() : await _asyncQueryExecutor.CountAsync(Items); 384var resultArray = _asyncQueryExecutor is null ? result.ToArray() : await _asyncQueryExecutor.ToArrayAsync(result);