clevertech/YiiBooster

TbRelationalColumn: getPrimaryKey($data)

mohammad-eghlima opened this issue · 0 comments

Hi,

We have custom Yii1 and Doctrine2 framework.
We use Doctrine instead of Yii Active record.
We have our own DataProvider extended from \CDataProvider.
You ignored checking this base abstract class and so id will return as null,
If you could change your code (for example add the below code before return null), it will be appreciated.

if ($this->grid->dataProvider instanceof CDataProvider) {
return $data->getId();
}