operator <= method

Expression operator <=(
  1. dynamic other
)
inherited

Database less or equal than operator. Throws ArgumentError if other is not an Expression, T or Column.

Implementation

Expression operator <=(dynamic other) {
  return _LessThanOrEqualExpression(this, _createValueExpression(other));
}