Table of Contents

Interface IQueryProviderAsync

Namespace
LinqToDB.Async
Assembly
linq2db.dll

This is internal API and is not intended for use by Linq To DB applications. It may change or be removed without further notice.

public interface IQueryProviderAsync : IQueryProvider
Inherited Members
Extension Methods

Methods

ExecuteAsyncEnumerable<TResult>(Expression, CancellationToken)

This is internal API and is not intended for use by Linq To DB applications. It may change or be removed without further notice.

Task<IAsyncEnumerable<TResult>> ExecuteAsyncEnumerable<TResult>(Expression expression, CancellationToken cancellationToken)

Parameters

expression Expression
cancellationToken CancellationToken

Returns

Task<IAsyncEnumerable<TResult>>

Type Parameters

TResult

ExecuteAsync<TResult>(Expression, CancellationToken)

This is internal API and is not intended for use by Linq To DB applications. It may change or be removed without further notice.

Task<TResult> ExecuteAsync<TResult>(Expression expression, CancellationToken cancellationToken)

Parameters

expression Expression
cancellationToken CancellationToken

Returns

Task<TResult>

Type Parameters

TResult