1 implementation of CountAsync
Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter (1)
EntityFrameworkAsyncQueryExecutor.cs (1)
15public Task<int> CountAsync<T>(IQueryable<T> queryable)
1 reference to CountAsync
Microsoft.AspNetCore.Components.QuickGrid (1)
QuickGrid.razor.cs (1)
521var totalItemCount = _asyncQueryExecutor is null ? Items.Count() : await _asyncQueryExecutor.CountAsync(Items);