DeleteFromImpl<T> Class

The default implementation of DeleteFrom<T>.

C#
public sealed class DeleteFromImpl<T> : DeleteFrom<T>

Type Parameters

T

The type of the class qualified with the TableAttribute.

Inheritance
DeleteFromImpl<T>
Implements

Constructors

DeleteFromImpl(Siphon, string)

The default implementation of DeleteFrom<T>.

Methods

Where(string, IReadOnlyDictionary<string, object>)

Description copied from interface: DeleteFrom

Executes the delete statement with the specified condition and parameters.

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

Constructors Detail

DeleteFromImpl(Siphon, string)

The default implementation of DeleteFrom<T>.

C#
public DeleteFromImpl(Siphon siphon, string text)

Parameters

siphon
Siphon

The Siphon object.

text
string

The prefix statement.

Methods Detail

Where(string, IReadOnlyDictionary<string, object>)

Description copied from interface: DeleteFrom

Executes the delete statement with the specified condition and parameters.

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

Parameters

condition
string

Implements