Method: Sequel::SQL::StringMethods#like
- Defined in:
- lib/sequel/sql.rb
#like(*ces) ⇒ Object
Create a BooleanExpression case sensitive pattern match of self with the given patterns. See StringExpression.like.
300 301 302 |
# File 'lib/sequel/sql.rb', line 300 def like(*ces) StringExpression.like(self, *ces) end |