ORM::where_lt PHP Méthode

where_lt() public méthode

.. < clause to your query
public where_lt ( $column_name, $value = null )
    public function where_lt($column_name, $value = null)
    {
        return $this->_add_simple_where($column_name, '<', $value);
    }
ORM