Expression class
A database Expression.
Constructors
- Expression(String expression)
- Creates a new Expression.
Properties
- expression → String
-
The String representation of the Expression. Note that the precedence
of operators may not be what you think, so always use parentheses to make
sure that that expressions are executed in the correct order.
final
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator &(
dynamic other) → Expression - Database AND operator.
-
operator <(
dynamic other) → Expression - Database less than operator.
-
operator <=(
dynamic other) → Expression - Database less or equal than operator.
-
operator ==(
Object other) → bool -
The equality operator.
inherited
-
operator >(
dynamic other) → Expression - Database greater than operator.
-
operator >=(
dynamic other) → Expression - Database greater or equal than operator.
-
operator |(
dynamic other) → Expression - Database OR operator.