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
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
intIndex of the row to get.
Property Value
Exceptions
- ArgumentOutOfRangeException
When
rowIndex
is out of bounds.
RowCount
Number of rows.
public int RowCount { get; }