Concat method

Expr Concat(
  1. Object o
)

Implementation

Expr Concat(Object o) {
  if (o is Expr) {
    return new BinaryExpression(this, "||", o)..fieldType = dbType.String;
  }
  return Concat(new ValueExpr(o, this.fieldType));
}