Granada\ORM::where_raw PHP Method

where_raw() public method

Add a raw WHERE clause to the query. The clause should contain question mark placeholders, which will be bound to the parameters supplied in the second argument.
public where_raw ( string $clause, $parameters = [] )
$clause string
    public function where_raw($clause, $parameters = array())
    {
        return $this->_add_where($clause, $parameters);
    }
ORM