IAsyncQueryExecutor Interface

Definition

Provides methods for asynchronous evaluation of queries against an IQueryable<T>.

public interface IAsyncQueryExecutor
type IAsyncQueryExecutor = interface
Public Interface IAsyncQueryExecutor

Methods

CountAsync<T>(IQueryable<T>)

Asynchronously counts the items in the IQueryable<T>, if supported.

IsSupported<T>(IQueryable<T>)

Determines whether the IQueryable<T> is supported by this IAsyncQueryExecutor type.

ToArrayAsync<T>(IQueryable<T>)

Asynchronously materializes the IQueryable<T> as an array, if supported.

Applies to