IAsyncQueryExecutor.IsSupported<T>(IQueryable<T>) Method
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.
Determines whether the IQueryable<T> is supported by this IAsyncQueryExecutor type.
public bool IsSupported<T> (System.Linq.IQueryable<T> queryable);
abstract member IsSupported : System.Linq.IQueryable<'T> -> bool
Public Function IsSupported(Of T) (queryable As IQueryable(Of T)) As Boolean
Type Parameters
- T
The data type.
Parameters
- queryable
- IQueryable<T>
An IQueryable<T> instance.
Returns
True if this IAsyncQueryExecutor instance can perform asynchronous queries for the supplied queryable
, otherwise false.