operator / method

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

Performs a division (this / other) in sql.

Implementation

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