multiply method

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

Add this expression to other.

This is equivalent to this * other in SQL.

Also available as * operator.

Implementation

Expr<double> multiply(Expr<double> other) =>
    ExpressionNumMultiply(this, other);