Table of Contents

Class SqlValuesNode

Namespace
LfrlAnvil.Sql.Expressions
Assembly
LfrlAnvil.Sql.Core.dll

Represents an SQL syntax tree node that defines a 1-dimensional or 2-dimensional collection of values to insert.

public sealed class SqlValuesNode : SqlNodeBase
Inheritance
SqlValuesNode
Inherited Members
Extension Methods

Properties

ColumnCount

Number of columns.

public int ColumnCount { get; }

Property Value

int

this[int]

Gets a collection of values associated with a row at the specified 0-based rowIndex.

public ReadOnlySpan<SqlExpressionNode> this[int rowIndex] { get; }

Parameters

rowIndex int

Index of the row to get.

Property Value

ReadOnlySpan<SqlExpressionNode>

Exceptions

ArgumentOutOfRangeException

When rowIndex is out of bounds.

RowCount

Number of rows.

public int RowCount { get; }

Property Value

int