operator - method
Performs a subtraction (this - other) in sql.
Implementation
Expression<DT> operator -(Expression<DT> other) {
return BaseInfixOperator(
this,
'-',
other,
precedence: Precedence.plusMinus,
);
}
Performs a subtraction (this - other) in sql.
Expression<DT> operator -(Expression<DT> other) {
return BaseInfixOperator(
this,
'-',
other,
precedence: Precedence.plusMinus,
);
}