0

我有 2 个实体,一个作为主要超类,由鉴别器等组成,另一个扩展了这个超类……这样我就可以在一个名为 Action 的表中记录所有动作。

我的鉴别器实体:

namespace Entities\Members;

/**
 * @Entity
 * @Table(name="actions")
 * @MappedSuperClass
 * @InheritanceType("JOINED")
 * @DiscriminatorColumn(name="action_type", type="string")
 * @DiscriminatorMap({"comments" = "Comments", "blog" = "Blog"})
 * @HasLifecycleCallbacksIndex
 */
class Action {

    /**
     * @Id 
     * @Column(name="id", type="integer")
     * @GeneratedValue(strategy="AUTO")
     */
    protected $id;

    /** @Column(type="string", length=300, nullable=true) */
    public $name;

    /** @Column(name="action_date", type="datetime", columnDefinition="datetime", nullable=false) */
    protected $action_date;

    /** @PrePersist */
    public function updated() {
        $this->action_date = new \DateTime("now");
    }

}

这是我用来扩展上述鉴别器实体的实体之一:

namespace Entities\Members;

/**
 * @Entity
 * @Table(name="comments")
 * @HasLifecycleCallbacks
 */
class Comments extends Action {

    /**
     * @Id @Column(name="id", type="bigint",length=15)
     * @GeneratedValue(strategy="AUTO")
     */
    protected $id;

    /** @Column(name="blog_id", type="integer", nullable=true) */
    protected $blog_id;

    /** @Column(name="comment", type="string", length=255, nullable=true) */
    protected $comment;

    /** @Column(name="comment_date", type="datetime", columnDefinition="datetime", nullable=true) */
    protected $comment_date;

    /**
     * @ManyToOne(targetEntity="Members",inversedBy="comments", cascade={"persist"})
     * @JoinColumn(name="userid", referencedColumnName="id")
     */
    protected $author;


    public function __construct() {
        $this->comment_date = $this->comment_date = new \DateTime("now");
    }

}

当我坚持评论实体时,这很好用,例如

$entity = new Entities\Comments;
$entity->comment = "my new comment";
$this->em->persist($entity);
$this->em->flush();

当我坚持时,它成功地将动作添加到动作表中......

但是,我不能再使用任何 findBy、findByOne 方法了,这些方法的任何结果的返回值现在 = null,当我编辑评论类并删除“从动作扩展”时,学说 findby、findOneBy 方法开始工作但是它不会添加到 tmy 鉴别器表中,因为它没有扩展主要的 Actions 超类......

我需要它来扩展 Actions 并让诸如 find、findOneBy 等教义方法也可以工作......

有什么建议么?

4

1 回答 1

0

请发布您的查询代码。我有兴趣了解这一切是如何工作的,所以我复制了您的实体,然后进行了查询:

protected function testJoinedQuery()
{
    $em = $this->getEntityManager();
    $repo = $em->getRepository('Entity\Comments');

    $entity = $repo->findOneBy(array('id' => 2));

    echo get_class($entity) . ' ' . $entity->getComment() . "\n";

}

似乎工作得很好。您是否尝试使用 Actions 存储库?

你可能不需要这个:

  • @MappedSuperClass

但是拥有它似乎并没有伤害任何东西。

于 2012-03-02T19:34:44.057 回答