学说自我加入实体



我在自行加入oneToMany上的实体时遇到问题。我的实体如下所示:

/*
 * @ORMManyToOne(targetEntity="IntegritBundleEntityUserMessage", inversedBy="related", cascade={"persist", "remove"})
 * @ORMJoinColumn(name="parent_id", referencedColumnName="id")
 * @SerialExpose
 * @SerialGroups({"all", "basic"})
 */
public $parent;
/**
 * @var ArrayCollection
 * @ORMOneToMany(targetEntity="IntegritBundleEntityUserMessage", mappedBy="parent", cascade={"persist", "remove"})
 * @SerialExpose
 * @SerialGroups({"all", "basic"})
 */
public $related;

但是在查询它时,我收到错误Notice: Undefined index: parent`

这是导致问题的$related属性中的mappedBy,但我不明白为什么

问题是文档块上缺少一个 * $parent :)

相关内容

  • 没有找到相关文章

最新更新