Table of Contents

Struct SqlAsyncQueryReaderInitResult

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

Represents a result of an action that prepares a compiled asynchronous query reader for reading rows.

public readonly record struct SqlAsyncQueryReaderInitResult : IEquatable<SqlAsyncQueryReaderInitResult>
Implements
Inherited Members

Constructors

SqlAsyncQueryReaderInitResult(int[], SqlResultSetField[]?)

Represents a result of an action that prepares a compiled asynchronous query reader for reading rows.

public SqlAsyncQueryReaderInitResult(int[] Ordinals, SqlResultSetField[]? Fields)

Parameters

Ordinals int[]

Collection of field ordinals.

Fields SqlResultSetField[]

Collection of definitions of row fields.

Properties

Fields

Collection of definitions of row fields.

public SqlResultSetField[]? Fields { get; init; }

Property Value

SqlResultSetField[]

Ordinals

Collection of field ordinals.

public int[] Ordinals { get; init; }

Property Value

int[]