我想扩展Entity \ Base类,如何在Doctrine 2.1中做到这一点?我的研究表明,每当遇到问题时,他都会切换到Doctrine 1.2:)我正在使用yaml配置
答案 0 :(得分:19)
Doctrine 2.X实体作为POPO(普通旧PHP对象)。 为了实现正确扩展,Doctrine强制您使用JPA中的一个名为Mapped Super Classes的概念。 这个想法非常简单。每当你想拥有一个基类并希望你的实体从它扩展时(我不是在谈论数据库级别的继承),你需要做的就是将你的Base类创建为MappedSuperClass。
由于
答案 1 :(得分:7)
这里是Guilherme Blanco链接的解决方案。我希望有一个已发布的解决方案,而不是最终将来无法再使用的链接:
<?php
/** @MappedSuperclass */
class MappedSuperclassBase
{
/** @Column(type="integer") */
protected $mapped1;
/** @Column(type="string") */
protected $mapped2;
/**
* @OneToOne(targetEntity="MappedSuperclassRelated1")
* @JoinColumn(name="related1_id", referencedColumnName="id")
*/
protected $mappedRelated1;
// ... more fields and methods
}
/** @Entity */
class EntitySubClass extends MappedSuperclassBase
{
/** @Id @Column(type="integer") */
private $id;
/** @Column(type="string") */
private $name;
// ... more fields and methods
}