DeleteStep<T> class abstract

Constructors

DeleteStep()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

and(String field) WhereStep<T, DeleteStep<T>>
Adds another condition to this delete for the specified field. Only results that match both the previous condition and the next will be deleted. SQL: AND
execute() Future
Executes the delete with the specified conditions.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
or(String field) WhereStep<T, DeleteStep<T>>
Adds another condition to this delete for the specified field. Both results that match the previous condition and the next will be deleted. SQL: OR
toString() String
A string representation of this object.
inherited
where(String field) WhereStep<T, DeleteStep<T>>
Adds a condition to this delete for the specified field. SQL: WHERE

Operators

operator ==(Object other) bool
The equality operator.
inherited