Interface IAsyncQueryProvider
Defines method to execute queries asynchronously that are described by an IQueryable object.
Assembly: PnP.Core.dll
Syntax
public interface IAsyncQueryProvider : IQueryProvider
Methods
Adds the expression to the specified batch
Declaration
Task<IEnumerableBatchResult<TResult>> AddToBatchAsync<TResult>(Expression expression, Batch batch)
Parameters
Returns
Type Parameters
Adds the expression to the current batch
Declaration
Task<IEnumerableBatchResult<TResult>> AddToCurrentBatchAsync<TResult>(Expression expression)
Parameters
Returns
Type Parameters
Executes the strongly-typed query represented by a specified expression tree asynchronously.
Declaration
TResult ExecuteAsync<TResult>(Expression expression, CancellationToken cancellationToken = default)
Parameters
Returns
Type Parameters