IAsyncQueryExecutor Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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. |