Method: MysqlFramework::SqlColumn#lte
- Defined in:
- lib/mysql_framework/sql_column.rb
#lte(value) ⇒ Object
This method is called to create a less than or equal (<=) condition for this column.
45 46 47 |
# File 'lib/mysql_framework/sql_column.rb', line 45 def lte(value) SqlCondition.new(column: to_s, comparison: '<=', value: value) end |