6

我试图寻找这个错误,但我没有找到任何东西的事实让我相信我在做一些愚蠢的事情。我将在下面包含相关代码,但基本上我使用的是多表继承(或Class Table Inheritance)并尝试使用 Doctrine ORM findBy() 方法基于鉴别器列进行查询,这导致以下 ORMException 为抛出:“无法识别的字段:类型”。

下面是触发异常的代码:

    // $this->em is an instance of \Doctrine\ORM\EntityManager
    $repository = $this->em->getRepository('JoeCommentBundle:Thread');

    return $repository->findOneBy(array(
        'type' => $this->type,
        'related_id' => $id
    ));

以下是“基础”抽象实体的相关代码:

<?php

namespace Joe\Bundle\CommentBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
use Doctrine\Common\Collections\ArrayCollection;

/**
 * @ORM\Entity
 * @ORM\Table(name="comment_threads")
 * @ORM\InheritanceType("JOINED")
 * @ORM\DiscriminatorColumn(name="type", type="string")
 * @ORM\DiscriminatorMap( {"story" = "Joe\Bundle\StoryBundle\Entity\StoryThread"} )
 */
abstract class Thread
{
    /**
     * @ORM\Id
     * @ORM\Column(type="integer")
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    protected $id;

    /**
     * @ORM\Column(name="related_id", type="integer")
     */
    protected $relatedId;

    /** MORE FIELDS BELOW.... **/

最后,这是具体线程实体的代码:

<?php

namespace Joe\Bundle\StoryBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use Joe\Bundle\CommentBundle\Entity\Thread as AbstractThread;

/**
 * @ORM\Entity
 * @ORM\Table(name="story_comment_threads")
 */
class StoryThread extends AbstractThread
{
    /**
     * @ORM\OneToOne(targetEntity="Story")
     * @ORM\JoinColumn(name="story_id", referencedColumnName="id")
     */
    protected $story;
}

我已经仔细检查了我的架构,并且该type列肯定存在,所以我不确定是什么原因造成的。有任何想法吗?谢谢。

4

2 回答 2

15

Rob,在查询您实际使用父实体并尝试过滤鉴别器值时。相反,在与您要获取的子实体相关的存储库上工作。Doctrine 将为您完成剩下的工作。因此,在您的情况下,您想要获取StoryThread的存储库。

$repository = $this->em->getRepository('JoeCommentBundle:StoryThread');
return repository->find($id);
于 2012-05-11T15:09:39.807 回答
12

您不能将鉴别器列用作标准实体属性。

相反,您可以执行以下操作:

$dql = 'SELECT e FROM JoeCommentBundle:Thread e 
    WHERE e.related_id = :related_id AND e INSTANCE OF :type';
$query = $em->createQuery($dql);
$query->setParameters(array(
    'type' => $this->type,
    'related_id' => $id
));
$record = $query->getSingleResult();
于 2012-05-11T15:09:55.743 回答