ORM::having_id_is PHP 메소드

having_id_is() 공개 메소드

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