Share via


IAsyncQueryExecutor.IsSupported<T>(IQueryable<T>) Method

Definition

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.

Applies to