当我创建一个类子#我填充其值并将其保存在DB(持久性,刷新)时我不用担心,所有都是数据库。
当我从数据库中选择一个Child#up时。 Parent1的所有属性都不是水合的,我确实有GrandParent,Child#,但不是Parent1的那些,为什么?
/**
* @ORM\Entity
* @ORM\InheritanceType("JOINED")
* @ORM\DiscriminatorColumn(name="class", type="int")
* @ORM\DiscriminatorMap({
* 0 = "Parent2",
* 1 = "Child1",
* 2 = "Child2"})
*/
abstract class GrandParent { ... }
/** @ORM\Entity */
abstract class Parent1 extends GrandParent { ... }
/** @ORM\Entity */
class Parent2 extends GrandPArent { ... }
/** @ORM\Entity */
class Child1 extends Parent1 { ... }
/** @ORM\Entity */
class Child2 extends Parent1 { ... }
感谢您的帮助。