UpdateSetImpl Class

The default implementation of UpdateSet.

C#
public sealed class UpdateSetImpl : UpdateSet
Inheritance
UpdateSetImpl
Implements

Constructors

UpdateSetImpl(Siphon, string)

The default implementation of UpdateSet.

Methods

Execute(IReadOnlyDictionary<string, object>)

Description copied from interface: UpdateTerminator

Executes the UPDATE statement with the specified parameters.

Where(string)

Description copied from interface: UpdateSet

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

Equals(object) (Inherited from object)
GetHashCode() (Inherited from object)
GetType() (Inherited from object)
MemberwiseClone() (Inherited from object)
ToString() (Inherited from object)

Constructors Detail

UpdateSetImpl(Siphon, string)

The default implementation of UpdateSet.

C#
public UpdateSetImpl(Siphon siphon, string text)

Parameters

siphon
Siphon

The siphon to be used in the update operation.

text
string

The SQL update statement.

Methods Detail

Execute(IReadOnlyDictionary<string, object>)

Description copied from interface: UpdateTerminator

Executes the UPDATE statement with the specified parameters.

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

Parameters

Implements

See Also

Where(string)

Description copied from interface: UpdateSet

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

C#
public UpdateWhere Where(string expr)

Parameters

expr
string

Returns

Description copied from interface: UpdateSet

The new UpdateWhere object.

Implements