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.
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() | CreateQuery(Expression) | (Inherited from IQueryProvider.) |
![]() | Execute(Expression) | (Inherited from IQueryProvider.) |
![]() | 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. |