UpdateTerminator Interface
Represents the executable UPDATE statement.
C#
public interface UpdateTerminator
- Derived
Methods
|
Execute(IRead |
Executes the |
Methods Detail
Execute(IReadOnlyDictionary<string, object>)
Executes the UPDATE statement with the specified parameters.
C#
void Execute(IReadOnlyDictionary<string, object> parameters)
Parameters
- parameters
-
IRead
Only <string, object>Dictionary
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.