IdWhereClause class
A where clause traversing the primary index (ids).
- Inheritance
-
- Object
- WhereClause
- IdWhereClause
Constructors
- IdWhereClause.any()
-
Where clause that matches all ids. Useful to get sorted results.
const
- IdWhereClause.between({Id? lower, bool includeLower = true, Id? upper, bool includeUpper = true})
-
Where clause that matches all id values between the given
lower
andupper
bounds.const - IdWhereClause.equalTo({required Id value})
-
Where clause that matches the id value equal to the given
value
.const - IdWhereClause.greaterThan({required Id lower, bool includeLower = true})
-
Where clause that matches all id values greater than the given
lower
bound.const - IdWhereClause.lessThan({required Id upper, bool includeUpper = true})
-
Where clause that matches all id values less than the given
upper
bound.const
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- includeLower → bool
-
Whether the lower bound should be included in the results.
final
- includeUpper → bool
-
Whether the upper bound should be included in the results.
final
- lower → Id?
-
The lower bound id or
null
for unbounded.final - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- upper → Id?
-
The upper bound id or
null
for unbounded.final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited