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