0
我在嘗試堅持使用學說與聯繫的實體時遇到了問題。堅持實體與學說聯盟
這裏是我的擁有方的映射:(user.php的)
/** @Role_id @Column(type="integer") nullable=false */
private $role_id;
/**
* @ManyToOne(targetEntity="Roles\Entities\Role")
* @JoinColumn(name="role_id", referencedColumnName="id")
*/
private $role;
有一個在逆側沒有映射關係,我試着用(OneToMany)
,它似乎並沒有有所作爲。
基本上,我路過的2 (integer)
一個默認值的方法setRole_id
但它顯示爲空白,當我真正去堅持這會導致MySQL錯誤作爲列不允許nulls
的實體。
編輯1:
字面上只是持續此爲ROLE_ID
$這 - >用戶> setRole_id(2);
乾杯,
伊萬