getDoc-6ren">
gpt4 book ai didi

Symfony2 : count from the querybuilder

转载 作者:行者123 更新时间:2023-12-01 09:24:30 26 4
gpt4 key购买 nike

我想知道我的表 TABLE 中的行数以及属性 name="joe"

这里是我到目前为止使用的代码,但我检索了对象(这只是不必要的,所以没有优化)

$repository = $this->getDoctrine()->getManager()->getRepository('MyBundle:TABLE');
$name = "joe";
$liste = $repository->findBy(array('name' => $name));
$nombre = count($liste);

如何使用 count 使用 querybuilder 实现它?需要设置参数$name。到目前为止我所看到的都没有参数 like this one ,所以不知道这是如何工作的......(而且我想避免使用分页器)

谢谢。

最佳答案

您可以通过以下方式实现:

$repository = $this->getDoctrine()->getManager()->getRepository('MyBundle:TABLE');
$name = "joe";
$qb = $repository->createQueryBuilder('t');
$qb->select('count(t.id)');
$qb->where('t.name = :name');
$qb->setParameter('name', $name);
$nombre = $qb->getQuery()->getSingleScalarResult();

但是好的做法是将此逻辑放入存储库类中,因此您可以像这样调用方法:
$nombre = $repository->countByName($name); 

只需在您的 TableRepository 类中创建新方法:
public function countByName($name)
{
$qb = $this->createQueryBuilder('t');
$qb->select('count(t.id)');
$qb->where('t.name = :name');
$qb->setParameter('name', $name);

return $qb->getQuery()->getSingleScalarResult();
}

关于Symfony2 : count from the querybuilder,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27532349/

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