ORM::having_id_is PHP Method

having_id_is() public method

If primary key is compound, only the columns that belong to they key will be used for the query
public having_id_is ( $id )
    public function having_id_is($id)
    {
        return is_array($this->_get_id_column_name()) ? $this->having($this->_get_compound_id_column_values($id), null) : $this->having($this->_get_id_column_name(), $id);
    }
ORM