gpt4 book ai didi

php - 在 Doctrine2 中将字段聚合到获取的对象

转载 作者:可可西里 更新时间:2023-11-01 08:46:16 24 4
gpt4 key购买 nike

编辑:

  • 进一步研究:看起来答案在于更改默认的 Hydrator 以进行定制。 Doctrine2 允许您通过将他的名字作为参数发送来更改它:

    $query->getResult('CustomHydrator');

不要忘记先在您的 config.yml 文件中注册它:

doctrine:
orm:
hydrators:
CustomHydrator: \your\bundle\Hydrators\CustomHydrator
  • 我的博客和评论实体之间的关系是一对多的。 1 博客有 N 条评论

在研究了如何在 Doctrine 2 中为获取的对象添加额外字段后,我发现了 Aggregate Fields ,这是一篇好文章,但只是谈论从单个帐户中获取余额,它从未说明在处理多个帐户时我们应该做什么,这听起来可能很愚蠢,但让我解释一下我的情况。

在我的案例中,与帐户和条目无关,与博客和评论有关。

我想做的是列出一些博客并只显示它有多少评论而不加载任何评论信息,换句话说我想将这个查询转换为 Doctrine2 World。

'SELECT b.*, COUNT( b.id ) AS totalComments FROM  `blogs` b LEFT JOIN comments c ON b.id = c.blog_id GROUP BY b.id LIMIT 8'

我期望的结果是一个博客对象数组,其中 totalComments 属性设置正确,如下所示:

array (size=8)
0 =>
object Blog
'id' => int 330
'title' => string 'title blog'

// Added field, not visible in table DB. Came through query COUNT() statement
'totalComments' => int 5
// ... more attributes

1 => ...
//more object blogs
);

我就是做不到,我能做的最好的就是这样:

创建和获取查询:

$qb = $this->createQueryBuilder('b')
->select('b, c')
->addSelect('count(b.id) as nComments')
->leftJoin('b.comments', 'c')
->groupBy('b.id')

return $qb->getQuery()->getResult();

我得到的结果是一个数组数组,其中位置 0 有博客对象和位置“totalComments”

// var_dump($result)
array (size=8)
0 =>
array(2) =>
0 =>
object Blog
'id' => int 330
'title' => string 'title blog'
// ... more attributes

"totalComments" => int 5

1 => ...
);

我也尝试制作自己的 Hydrator,但我刚开始使用 Doctrine2 时发现自己有点迷路了。

我希望已经够清楚了。如果需要,我可以提供任何其他信息。

提前致谢!

最佳答案

您要么必须命名您想要的字段,要么得到混合结果(如您的第二个示例)。所以对于平面阵列:

$qb = $this->createQueryBuilder('b')
->select('b.title, b.author')
->addSelect('count(c.id) as nComments')
->leftJoin('b.comments', 'c')
->groupBy('b.id')

return $qb->getQuery()->getArrayResult();

或者混合结果:

$qb = $this->createQueryBuilder('b')
->select('b')
->addSelect('count(c.id) as nComments')
->leftJoin('b.comments', 'c')
->groupBy('b.id')

return $qb->getQuery()->getResult();

关于php - 在 Doctrine2 中将字段聚合到获取的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27511434/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com