Granada\ORM::order_by_expr PHP Method

order_by_expr() public method

Add an unquoted expression as an ORDER BY clause
public order_by_expr ( string $clause )
$clause string
    public function order_by_expr($clause)
    {
        $this->_order_by[] = $clause;
        return $this;
    }
ORM