divide method

Expr<double> divide(
  1. Expr<double> other
)

Add this expression to other.

This is equivalent to this / other in SQL.

Also available as / operator.

Implementation

Expr<double> divide(Expr<double> other) => ExpressionNumDivide(this, other);