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