IDbAsyncQueryProvider Interface

 

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.

Namespace:   System.Data.Entity.Infrastructure
Assembly:  EntityFramework (in EntityFramework.dll)

public interface IDbAsyncQueryProvider : IQueryProvider

NameDescription
System_CAPS_pubmethodCreateQuery(Expression)

(Inherited from IQueryProvider.)

System_CAPS_pubmethodExecute(Expression)

(Inherited from IQueryProvider.)

System_CAPS_pubmethodExecuteAsync(Expression, CancellationToken)

Asynchronously executes the query represented by a specified expression tree.

System_CAPS_pubmethodExecuteAsync<TResult>(Expression, CancellationToken)

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