Like method

Expr Like(
  1. String pattern
)
matches against a pattern, use % to match any number of chars or digits(or none), and _ to match exactly one char, you can use it with text or numeric columns

Implementation

Expr Like(String pattern) {
  return new BinaryExpression(this, "LIKE", new ValueExpr(pattern, dbType.String));
}