operator + method

Expression<String> operator +(
  1. Expression<String> other
)

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,
  );
}