Table of Contents

Class SqlUpdateNode

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

Represents an SQL syntax tree statement node that defines an update of existing records in a data source.

public sealed class SqlUpdateNode : SqlNodeBase, ISqlStatementNode
Inheritance
SqlUpdateNode
Implements
Inherited Members
Extension Methods

Properties

Assignments

Collection of value assignments that this update refers to.

public ReadOnlyArray<SqlValueAssignmentNode> Assignments { get; }

Property Value

ReadOnlyArray<SqlValueAssignmentNode>

DataSource

Data source that defines records to be updated.

public SqlDataSourceNode DataSource { get; }

Property Value

SqlDataSourceNode

Remarks

Records will be updated in the From record set.