operator <= method

Expression operator <=(
  1. dynamic other
)

Database less or equal than operator.

Implementation

Expression operator <=(dynamic other) {
  if (other is! Expression) {
    other = DatabasePoolManager.encoder.convert(other);
  }
  return Expression('($this <= $other)');
}