operator < method

Expression operator <(
  1. dynamic other
)

Database less than operator.

Implementation

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