operator - method

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

Performs a subtraction (this - other) in sql.

Implementation

Expression<DT> operator -(Expression<DT> other) {
  return (dartCast<int>() - other.dartCast<int>()).dartCast<DT>();
}