1

我正在使用 SYmfony 中的 Doctrine 构建一个复杂的 SQL 查询,其中涉及加入多个表。

作为上述 SQL 查询的一部分,我需要使用 GROUP_CONCAT 并希望我碰到了这个可用的扩展:https ://github.com/beberlei/DoctrineExtensions/blob/master/lib/DoctrineExtensions/Query/Mysql/GroupConcat.php ,我把它放在 MyBundle\Resources\DoctrineExtensions 下,我也在我的 config.yml 中注册了它,例如:

doctrine:
     ####
orm:
      ###
    entity_managers:
        default:

            dql:
                string_functions:
                                GROUP_CONCAT:  MyBundle\Resources\DoctrineExtensions\GroupConcat

在我的课堂上,当我使用以下方式初始化扩展时:

    $parameterRepo  = $this->em->getRepository('MyBundle:Parameter');
    $classLoader = new \Doctrine\Common\ClassLoader('DoctrineExtensions', "MyBundle/Resources/DoctrineExtensions");
    $classLoader->register();

    $config = new \Doctrine\ORM\Configuration();
    $config->addCustomStringFunction('GROUP_CONCAT', 'MyBundle/Resources/DoctrineExtensions');

但是,当我运行此查询时:

$qb->select("
                l.identifier,
                ct.fooName,
                ct.fooShortname,
                GROUP_CONCAT(p.field, ':', cp.parameterValue) as params,
                ct.section,
                p.field
               ")
        ->innerJoin('####')
        ->innerJoin('###')
        ->leftJoin('###')
        ->groupBy('###);

我收到以下错误:

[Syntax Error] line 0, col 167: Error: Expected Doctrine\ORM\Query\Lexer::T_CLOSE_PARENTHESIS, got ','

这是扩展程序的错误还是我遗漏了什么?我该怎么做呢?谢谢你。

4

0 回答 0