operator - method
Performs a subtraction (this
- other
) in sql.
Implementation
Expression<BigInt> operator -(Expression<BigInt> other) {
return (dartCast<int>() - other.dartCast<int>()).dartCast<BigInt>();
}
Performs a subtraction (this
- other
) in sql.
Expression<BigInt> operator -(Expression<BigInt> other) {
return (dartCast<int>() - other.dartCast<int>()).dartCast<BigInt>();
}