Table of Contents

Interface ISqlAsyncQueryLambdaExpression<TRow>

Namespace
LfrlAnvil.Sql.Statements.Compilers
Assembly
LfrlAnvil.Sql.Core.dll

Represents a generic asynchronous query lambda expression.

public interface ISqlAsyncQueryLambdaExpression<TRow> : ISqlAsyncQueryLambdaExpression where TRow : notnull

Type Parameters

TRow

Row type.

Methods

Compile()

Compiles this expression.

[Pure]
Func<IDataReader, SqlQueryReaderOptions, CancellationToken, ValueTask<SqlQueryResult<TRow>>> Compile()

Returns

Func<IDataReader, SqlQueryReaderOptions, CancellationToken, ValueTask<SqlQueryResult<TRow>>>

Compiled Delegate.