UpdateTerminator Interface

Represents the executable UPDATE statement.

C#
public interface UpdateTerminator
Derived

Methods

Execute(IReadOnlyDictionary<string, object>)

Executes the UPDATE statement with the specified parameters.

Methods Detail

Execute(IReadOnlyDictionary<string, object>)

Executes the UPDATE statement with the specified parameters.

C#
void Execute(IReadOnlyDictionary<string, object> parameters)

Parameters

parameters
IReadOnlyDictionary<string, object>

Immutable key-value pairs. All parameter names in the SET and WHERE clauses must be included in parameters as keys. Each value must be of the appropriate type.

See Also