Granada\ORM::where_id_is PHP 메소드

where_id_is() 공개 메소드

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