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