我们正在使用 Doctrine v2.2.1。使用 YML 定义的实体。
在这里,我有 2 个实体通过给定的关联相互引用;
entities\User:
type: entity
table: user
oneToMany:
subjectNews:
targetEntity: entities\News
mappedBy: subjectUser
cascade: ["all"]
actionNews:
targetEntity: entities\News
mappedBy: actionUser
cascade: ["all"]
entities\News:
type: entity
table: news
manyToOne:
subjectUser:
targetEntity: entities\User
cascade: ["all"]
nullable: true
actionUser:
targetEntity: entities\User
cascade: ["all"]
nullable: true
当我根据这些定义生成实体类时,我在我的实体\用户 php 类中得到了一个意想不到的结果。这就像;
/**
* Add subjectNews
*
* @param entities\News $subjectNews
* @return User
*/
public function addNews(\entities\News $subjectNews)
{
$this->subjectNews[] = $subjectNews;
return $this;
}
我的实体中的 setter 方法按预期生成。但是实体\用户的添加方法没有按预期生成。
难道我做错了什么?或者有什么解决方法吗?还是与Doctrine2 的限制和已知问题文档中提到的问题有关?
和平