您的架构无效。你应该有两个不同的对象来回答和评论,因为它们是两个不同的东西,即使它们共享一个共同的界面。
您应该创建两个实体,Answer
并Comment
为它们创建关联。由于它们几乎相同,您可以创建一个抽象类 ,AbstractContent
它定义了所有必需的字段和访问器方法。Doctrine 支持继承,因此最终的数据库模式将完全相同,但您的 OO 模型将是正确的。
/**
* @MappedSuperclass
* @InheritanceType("SINGLE_TABLE")
* @DiscriminatorColumn(type = "string", name = "discriminator")
* @DiscriminatorMap({ "answer" = "Answer", "comment" = "Comment" })
*/
abstract class AbstractContent {
/** @Column(type = "integer") @Id @GeneratedValue("AUTO") */
protected $id;
/** @Column(type="text") */
protected $content;
/** @Column(type = "datetime", name = "created_at") */
protected $createdAt;
public function __construct() {
$this->createdAt = new \DateTime();
}
}
/** @Entity */
class Answer extends AbstractContent { }
/** @Entity */
class Comment extends AbstractContent { }
/**
* @OneToMany(targetEntity="Cms\Entity\Answer", mappedBy="parent")
*/
private $answers;
/**
* @OneToMany(targetEntity="Cms\Entity\Comment", mappedBy="parent")
*/
private $comments;
您可以在其文档页面上阅读有关 Doctrine 中继承的更多信息:继承映射