WhereStep<T, S> class abstract

Constructors

WhereStep()

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

between(dynamic value1, dynamic value2) → S
Query condition that matches all values greater than the first value and less than the second value. SQL: BETWEEN
contains(dynamic value) → S
Query condition that matches any string that contains the specified value.
equals(dynamic value) → S
Query condition that matches all values equal to the specified value. SQL: =
gt(dynamic value) → S
Query condition that matches all values greater than the specified value. SQL: >
gte(dynamic value) → S
Query condition that matches all values greater than or equal to the specified value. SQL: >=
in_(Iterable values) → S
Query condition that matches any value in the specified list of values. SQL: IN(
like(String expression) → S
Query condition that matches parts of a string using % as wildcard. SQL: LIKE
lt(dynamic value) → S
Query condition that matches all values less than the specified value. SQL: <
lte(dynamic value) → S
Query condition that matches all values less than or equal to the specified value. SQL: <=
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
not() WhereStep<T, S>
Negates the next condition. SQL: NOT
toString() String
A string representation of this object.
inherited

Operators

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