1

谁可以摆脱在 DQL 查询中使用命名空间?我想为我的包中的所有学说请求分配默认命名空间。在查询构建器中使用默认命名空间也是完美的。我想拥有:

        $dql = "select i
                from MyCompanyMySuperPuperBundle:Issue i
                    inner join MyCompanyMySuperPuperBundle:Tracker t with t.id = i.tracker
                where t.name in (?1) and i.version = ?2";

代替

        $dql = "select i
                from Issue i
                    inner join Tracker t with t.id = i.tracker
                where t.name in (?1) and i.version = ?2";

完整代码:

namespace MyCompany\MySuperPuperBundle\Entity;

use Doctrine\ORM\EntityRepository;

class IssueRepository extends EntityRepository
{
    public function findStoriesByVersion(\MyCompany\MySuperPuperBundle\Entity\Version $version)
    {
        $dql = "select i
                from MyCompanyMySuperPuperBundle:Issue i
                    inner join MyCompanyMySuperPuperBundle:Tracker t with t.id = i.tracker
                where t.name in (?1) and i.version = ?2";

        return $this->getEntityManager()
                    ->createQuery($dql)
                    ->setParameter(1, array('Epic', 'Story', 'Spike', 'Extra'))
                    ->setParameter(2, $version->getId())
                    ->getResult();
    }
}

更新:

似乎没有办法为每个捆绑前缀设置默认值,我必须为所有实体使用那个愚蠢的前缀……超过 200 个实体……好吧……让我们设置别名。它是通过以下方式完成的:

orm:
    auto_generate_proxy_classes: %kernel.debug%
    entity_managers:
        default:
            mappings:
                MyCompanyMySuperPuperBundle:
                    type: annotation
                    alias: xr
    #auto_mapping: true

现在我可以使用 xr 作为前缀

        $dql = "select i
                from xr:Issue i
                    inner join xr:Tracker t with t.id = i.tracker
                where t.name in (?1) and i.version = ?2";

但现在树枝告诉我

在第 7 行的 MyCompanyMySuperPuperBundle:Default:index.html.twig 中呈现模板(“Unknown Entity namespace alias 'UMyCompanyMySuperPuperBundle'.”)时引发异常。

而且我不能为树枝使用 xr 前缀 - 它不起作用。你有什么想法?

PS:如果我可以在一个代码中同时使用两个别名 MyCompanyMySuperPuperBundle - full 和 xr - short ...

更新:已解决

有用!现在我可以通过默认全名和非常短的名称访问模型。树枝使用长命名空间名称,因此它可以工作。

class MyCompanyMySuperPuperBundle extends Bundle
{
    public function boot()
    {
        // implement alias XR for base namespace
        $em = $this->container->get("doctrine.orm.entity_manager");
        $config = $em->getConfiguration();
        $config->addEntityNamespace("XR", "MyCompany\\MySuperPuperBundle\\Entity");
    }
}
4

1 回答 1

7

在 Doctrine 中没有默认命名空间,除非你的实体本身根本没有命名空间。但是,您可以做的是指定一个较短的命名空间,例如

$em = $container->get('doctrine.orm.entity_manager');
$config = $em->getConfiguration();
$config->addEntityNamespace('e', 'MyCompany\\Bundle\\Entity');

之后,您可以将您的实体称为“e:Issue”。您可以将其放入请求前事件侦听器或捆绑包的 boot() 方法中。

于 2013-05-12T12:41:58.827 回答