6 references to IAsyncQueryExecutor
Microsoft.AspNetCore.Components.QuickGrid (6)
IAsyncQueryExecutor.cs (2)
14
/// Determines whether the <see cref="IQueryable{T}" /> is supported by this <see cref="
IAsyncQueryExecutor
"/> type.
18
/// <returns>True if this <see cref="
IAsyncQueryExecutor
"/> instance can perform asynchronous queries for the supplied <paramref name="queryable"/>, otherwise false.</returns>
Infrastructure\AsyncQueryExecutorSupplier.cs (3)
28
public static
IAsyncQueryExecutor
? GetAsyncQueryExecutor<T>(IServiceProvider services, IQueryable<T>? queryable)
32
var
executor = services.GetService<
IAsyncQueryExecutor
>();
QuickGrid.razor.cs (1)
117
private
IAsyncQueryExecutor
? _asyncQueryExecutor;