operator + method

Expression<DT> operator +(
  1. Expression<DT> other
)

Performs an addition (this + other) in sql.

Implementation

Expression<DT> operator +(Expression<DT> other) {
  return BaseInfixOperator(
    this,
    '+',
    other,
    precedence: Precedence.plusMinus,
  );
}