UpdateWhereStep<T> class abstract

Constructors

UpdateWhereStep()

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, UpdateWhereStep<T>>
Adds another condition to this update for the specified field. Only results that match both the previous condition and the next will be updated. SQL: AND
execute() Future<int>
Executes the update. Returns the number of modified records.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
or(String field) WhereStep<T, UpdateWhereStep<T>>
Adds another condition to this update for the specified field. Both results that match the previous condition and the next will be update. SQL: OR
toString() String
A string representation of this object.
inherited

Operators

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