IDbAsyncQueryProvider Interface

Definition

Defines methods to create and asynchronously execute queries that are described by an IQueryable object. This interface is used to interact with Entity Framework queries and shouldn't be implemented by custom classes.

public interface IDbAsyncQueryProvider : System.Linq.IQueryProvider
type IDbAsyncQueryProvider = interface
    interface IQueryProvider
Public Interface IDbAsyncQueryProvider
Implements IQueryProvider
Implements

Methods

ExecuteAsync(Expression, CancellationToken)

Asynchronously executes the query represented by a specified expression tree.

ExecuteAsync<TResult>(Expression, CancellationToken)

Asynchronously executes the strongly-typed query represented by a specified expression tree.

Applies to