symfony2: comment utiliser Group concat dans QueryBuilder
j'ai imbriqué (en utilisant gedmo tree) l'entité appelée "Location". Entity " Appartment "A location_id et ce que je dois faire pour mapper la valeur scalaire appelée eg" path " à la requête qui renvoie tous les appartments.
en Doctrine1, j'avais ce code:
/**
* Add "path" to each element
*
* @param Doctrine_Query $query
* @param string $separator
*/
protected function addScalar_path(Doctrine_Query $query, $separator=", ")
{
$subquery = "k99.root_id=o.root_id AND k99.lft<=o.lft AND k99.rgt>=o.rgt AND k99.level<=o.level" ;
$query->addSelect("(SELECT GROUP_CONCAT(k99.name ORDER BY k99.level SEPARATOR '$separator') FROM Location k99 WHERE $subquery) AS path") ;
}
Remarque: "o" alias est utilisé pour la première question. Ce code me permettrait d'utiliser
{foreach .... as $appartment}
{$appartment->path}
...
ce Qui serait d'imprimer:
Australia, Victoria, Melbourne, ...other children...
Comment faire la même chose en D2? Et comment même extensions de la doctrine dans mon projet symfony2?
4 réponses
si vous voulez l'utiliser dans QueryBuilder vous devez:
1) ajouter des fonctions DQL GroupConcat: GroupConcat
2) Enregistrer GroupConcat:DQL fonctions définies par L'utilisateur
une autre alternative est d'utiliser NativeQuery : native SQL
dans symfony2 enregistrer une fonction DQL il est très simple d'ajouter GROUP_CONCAT dans la configuration.yml comme:
entity_managers:
default:
dql:
string_functions:
GROUP_CONCAT: YourBundle\Query\Mysql\GroupConcat
Pour plus d'informations visitez le site enregistrer les fonctions DQL personnalisées
Si l'un tombe sur ce post, il y a un Extensions De Doctrine dépôt à Github. Le repo contient des instructions sur la façon de l'utiliser. Vous pouvez utiliser composer pour l'installer, puis utilisez une fonction qui vous intéresse.
EDIT:
pour le bien de L'utilisateur Tushar, la façon D'utiliser GROUP_CONCAT dans DQL de Doctrine2 est simple installer Extensions De Doctrine:
composer require beberlei/DoctrineExtensions
pour l'activer: ajouter ce qui suit dans votre config.yml:
doctrine:
orm:
dql:
string_functions:
group_concat: DoctrineExtensions\Query\Mysql\GroupConcat
alors dans votre code, vous devriez pouvoir maintenant utiliser le groupe Concat dans vos DQLs:
$this->createQueryBuilder('location')
->select('location')
->addSelect("GROUP_CONCAT(DISTINCT location.name SEPARATOR '; ') AS locationNames");
$result = $queryBuilder->getQuery()->getResult();
Ou, dans le cas de la question de départ:
$query->addSelect("(SELECT GROUP_CONCAT(k99.name ORDER BY k99.level SEPARATOR '$separator') FROM Location k99 WHERE $subquery) AS path");
juste un ajout à @A. réponse d'aitboudad:
la fonction DQL GroupConcat linked semble avoir un "support limité pour GROUP_CONCAT".
Ici, c'est la pleine version de soutien :
La configuration est comme il l'a mentionné.
// -------------------------------------------------
// Complete support of GROUP_CONCAT in Doctrine2
// -------------------------------------------------
// Original Article: http://habrahabr.ru/post/181666/
// Automated translation to English: http://sysmagazine.com/posts/181666/
// Original github commit: https://github.com/denisvmedia/DoctrineExtensions/blob/d1caf21cd7c71cc557e60c26e9bf25323a194dd1/lib/DoctrineExtensions/Query/Mysql/GroupConcat.php
/**
* DoctrineExtensions Mysql Function Pack
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to kontakt@beberlei.de so I can send you a copy immediately.
*/
namespace DoctrineExtensions\Query\Mysql;
use Doctrine\ORM\Query\AST\Functions\FunctionNode,
Doctrine\ORM\Query\Lexer;
/**
* Full support for:
*
* GROUP_CONCAT([DISTINCT] expr [,expr ...]
* [ORDER BY {unsigned_integer | col_name | expr}
* [ASC | DESC] [,col_name ...]]
* [SEPARATOR str_val])
*
*/
class GroupConcat extends FunctionNode
{
public $isDistinct = false;
public $pathExp = null;
public $separator = null;
public $orderBy = null;
public function parse(\Doctrine\ORM\Query\Parser $parser)
{
$parser->match(Lexer::T_IDENTIFIER);
$parser->match(Lexer::T_OPEN_PARENTHESIS);
$lexer = $parser->getLexer();
if ($lexer->isNextToken(Lexer::T_DISTINCT)) {
$parser->match(Lexer::T_DISTINCT);
$this->isDistinct = true;
}
// first Path Expression is mandatory
$this->pathExp = array();
$this->pathExp[] = $parser->SingleValuedPathExpression();
while ($lexer->isNextToken(Lexer::T_COMMA)) {
$parser->match(Lexer::T_COMMA);
$this->pathExp[] = $parser->StringPrimary();
}
if ($lexer->isNextToken(Lexer::T_ORDER)) {
$this->orderBy = $parser->OrderByClause();
}
if ($lexer->isNextToken(Lexer::T_IDENTIFIER)) {
if (strtolower($lexer->lookahead['value']) !== 'separator') {
$parser->syntaxError('separator');
}
$parser->match(Lexer::T_IDENTIFIER);
$this->separator = $parser->StringPrimary();
}
$parser->match(Lexer::T_CLOSE_PARENTHESIS);
}
public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker)
{
$result = 'GROUP_CONCAT(' . ($this->isDistinct ? 'DISTINCT ' : '');
$fields = array();
foreach ($this->pathExp as $pathExp) {
$fields[] = $pathExp->dispatch($sqlWalker);
}
$result .= sprintf('%s', implode(', ', $fields));
if ($this->orderBy) {
$result .= ' ' . $sqlWalker->walkOrderByClause($this->orderBy);
}
if ($this->separator) {
$result .= ' SEPARATOR ' . $sqlWalker->walkStringPrimary($this->separator);
}
$result .= ')';
return $result;
}
}
// -------------------------------------------------
// Example of usage:
// -------------------------------------------------
$query = $this->createQueryBuilder('c')
->select("
c as company,
GroupConcat(b.id, ';', b.headOffice, ';', b.city, ';', s.name
ORDER by b.id
SEPARATOR '|') AS branches
")->leftJoin('c.branches', 'b')
->leftJoin('b.country', 's')
->groupBy('c.id')
->setFirstResult(0)
->setMaxResults(10)
->getQuery();
$result = $query->getResult();
j'ai eu le même problème. GROUP_CONCAT ne permet pas L'utilisation de CASE-WHEN inside. Cette bibliothèque corrigé mes problèmes, donc peut-être que ça sera utile.