我有一个 BlogBundle,我想在我的帖子中添加一个线程(使用 FOSCommentBundle),但是按照 FOS 文档,我必须提供线程 ID。问题是我所有的旧帖子都将线程属性设置为 NULL,将新线程与旧帖子相关联的最佳方法是什么?如果可能,我不必更改 FOSThreadController。
/**
* @var \ACME\CommentBundle\Thread $thread
*
* @ORM\OneToOne(targetEntity="ACME\CommentBundle\Entity\Thread", cascade={"persist", "remove"})
*/
private $thread;