在学说2

时间:2016-04-06 04:08:08

标签: php orm doctrine-orm doctrine

在Doctrine 2中使用partial object syntax时,是否有任何方法可以使用别名?

我知道我可以这样做:

$this->createQueryBuilder('user')->select([
     'user.id AS id',
     'user.firstName AS first_name',
     'user.lastName AS last_name',
     'user.email AS email',
     'user.dateCreated AS date_created'
])->getQuery()->getArrayResult();

但是我需要使用部分对象语法,以便doctrine在嵌套的关系层次结构中检索结果:

$this->createQueryBuilder('team')
    ->select('PARTIAL team.{id, name, dateCreated}, s, PARTIAL e.{id, name}')
    ->innerJoin('team.session', 's')
    ->innerJoin('s.event', 'e')
    ->getQuery()->getArrayResult();

我在Doctrine\ORM\Internal\Hydration\ArrayHydrator中挖了一下,但没有看到任何钩子或任何东西,看起来Doctrine看起来没有postSelect事件或者某些东西可以让我实现自己的变异。

感谢您的帮助!

2 个答案:

答案 0 :(得分:0)

效率不高,但我最终subclassing the ArrayHydrator并自行改变了键。

希望有更好的方法,如果不是,我希望这有助于某人

答案 1 :(得分:0)

问题不仅仅与别名有关,还与括号有关。基本上,Partial object syntax很差,并且不允许使用别名或方括号。它期望出现逗号或列表结尾,其他所有内容都会引发语法错误。

我想使用这样的SUM()函数检索部分对象集合

public function findByCompetition(array $competition)
{
    $competitionField = $competition['field'] ?? 'Id';
    $competitionValue = $competition['value'] ?? 0;

    $teamsCompStatsByComp = $this->createQueryBuilder('t')
        ->select('partial t.{Id, competitionId, competitionOldId, teamId, teamOldId, SUM(goalsAttempted) goalsAttempted}')
        ->where('t.'.$competitionField.' = ?1')
        ->groupBy('t.teamId')
        ->orderBy('t.Id', 'ASC')
        ->setParameter('1', $competitionValue)
        ->getQuery()
        ->getResult()
    ;

    return new ArrayCollection($teamsCompStatsByComp);
}

但是出现了相同的错误

[语法错误]第0行,第85行:错误:预期的Doctrine \ ORM \ Query \ Lexer :: T_CLOSE_CURLY_BRACE,得到了'('

我必须以数组形式检索数据,在外键上使用IDENTITY(),然后手动填充我的实体

public function findByCompetition(array $competition)
{
    $competitionField = $competition['field'] ?? 'Id';
    $competitionValue = $competition['value'] ?? 0;

    $teamsCompStatsByComp = $this->createQueryBuilder('t')
        ->select('t.Id, IDENTITY(t.competitionId) competitionId, t.competitionOldId, IDENTITY(t.teamId) teamId, t.teamOldId, SUM(goalsAttempted) goalsAttempted')
        ->where('t.'.$competitionField.' = ?1')
        ->groupBy('t.teamId')
        ->orderBy('t.Id', 'ASC')
        ->setParameter('1', $competitionValue)
        ->getQuery()
        ->getResult()
    ;

    foreach ($teamsCompStatsByComp as $key => $teamCompStats) {
        $teamsCompStatsByComp[$key] = new TeamStatistics($teamCompStats);
    }

    return new ArrayCollection($teamsCompStatsByComp);
}

我认为我们应该在Github上发布一个问题,以改善部分语法行为。