1 implementation of ToArrayAsync
Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter (1)
EntityFrameworkAsyncQueryExecutor.cs (1)
18
public Task<T[]>
ToArrayAsync
<T>(IQueryable<T> queryable)
1 reference to ToArrayAsync
Microsoft.AspNetCore.Components.QuickGrid (1)
QuickGrid.razor.cs (1)
527
var resultArray = _asyncQueryExecutor is null ? result.ToArray() : await _asyncQueryExecutor.
ToArrayAsync
(result);