operator + method
Performs a string concatenation in sql by appending other to this.
Implementation
Expression<String> operator +(Expression<String> other) {
return BaseInfixOperator(this, '||', other,
precedence: Precedence.stringConcatenation);
}