operator > method
Database greater than operator.
Throws ArgumentError if other is not an Expression, T or Column.
Implementation
Expression operator >(dynamic other) {
return _GreaterThanExpression(this, _createValueExpression(other));
}
Database greater than operator.
Throws ArgumentError if other is not an Expression, T or Column.
Expression operator >(dynamic other) {
return _GreaterThanExpression(this, _createValueExpression(other));
}