Granada\ORM::where_id_is PHP Method

where_id_is() public method

Special method to query the table by its primary key
public where_id_is ( $id )
    public function where_id_is($id)
    {
        return $this->where($this->_get_id_column_name(), $id);
    }
ORM