Dear all,
I have problem saving and retrieving some associated models, I check the table and entity class, not missing anything comparing with baked version, but it still does not work
The only things that are different from my Table and Entity class with baked version are properties in comment block.
Do they have any effect to my classes?
The commented properties block looks like below:
/**
* User Entity
*
* @property int $id
* @property string $username
* @property string $name
* @property bool $is_staff
* @property string $password
* @property int|null $user_group_id
* @property bool $is_deleted
* @property bool $is_active
* @property \Cake\I18n\FrozenTime $created
* @property \Cake\I18n\FrozenTime $modified
*
* @property \App\Model\Entity\UserGroup $user_group
* @property \App\Model\Entity\Picker[] $pickers
* @property \App\Model\Entity\Role[] $roles
*/