operator + method
Performs an addition (this
+ other
) in sql.
Implementation
Expression<BigInt> operator +(Expression<BigInt> other) {
return (dartCast<int>() + other.dartCast<int>()).dartCast<BigInt>();
}
Performs an addition (this
+ other
) in sql.
Expression<BigInt> operator +(Expression<BigInt> other) {
return (dartCast<int>() + other.dartCast<int>()).dartCast<BigInt>();
}