operator < method

Expression operator <(
  1. dynamic other
)
inherited

Database less than operator.

Implementation

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