ORM::where_id_in PHP Method

where_id_in() public method

If primary key is compound, only the columns that belong to they key will be used for the query
public where_id_in ( $ids )
    public function where_id_in($ids)
    {
        return is_array($this->_get_id_column_name()) ? $this->where_any_is($this->_get_compound_id_column_values_array($ids)) : $this->where_in($this->_get_id_column_name(), $ids);
    }
ORM