operator - method

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

Performs a subtraction (this - other) in sql.

Implementation

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