divideValue method

Expr<double> divideValue(
  1. double other
)

Add this expression to other.

This is equivalent to this / other in SQL.

Also available as / operator.

Implementation

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