UpdateSet Interface

Represents the SET clause in an UPDATE statement.

C#
public interface UpdateSet : UpdateTerminator
Implements

Methods

Where(string)

Gets a new UpdateWhere object, which represents the combination of this (UPDATE ... SET ...) and the WHERE ... clause.

Methods Detail

Where(string)

Gets a new UpdateWhere object, which represents the combination of this (UPDATE ... SET ...) and the WHERE ... clause.

C#
UpdateWhere Where(string expr)

Parameters

expr
string

The expression of the WHERE clause. This expression can contain the alias specified in the Query.Update<T>(string) method. The values of the parameters in the expression can be specified with the UpdateTerminator.Execute(IReadOnlyDictionary<string, object>) method.

Returns

The new UpdateWhere object.