มันเป็นการดีกว่าที่จะย้ายตรรกะทั้งหมดของการทำงานกับฐานข้อมูลไปยังตัวแทน
ดังนั้นในตัวควบคุมที่คุณเขียน
/* you can also inject "FooRepository $repository" using autowire */
$repository = $this->getDoctrine()->getRepository(Foo::class);
$count = $repository->count();
และใน Repository/FooRepository.php
public function count()
{
$qb = $repository->createQueryBuilder('t');
return $qb
->select('count(t.id)')
->getQuery()
->getSingleScalarResult();
}
จะดีกว่าถ้าคุณย้าย$qb = ...
ไปที่แถวที่แยกกันในกรณีที่คุณต้องการสร้างนิพจน์ที่ซับซ้อน
public function count()
{
$qb = $repository->createQueryBuilder('t');
return $qb
->select('count(t.id)')
->where($qb->expr()->isNotNull('t.fieldName'))
->andWhere($qb->expr()->orX(
$qb->expr()->in('t.fieldName2', 0),
$qb->expr()->isNull('t.fieldName2')
))
->getQuery()
->getSingleScalarResult();
}
คิดเกี่ยวกับการแคชผลการสืบค้นด้วย - http://symfony.com/doc/current/reference/configuration/doctrine.html#caching-drivers
public function count()
{
$qb = $repository->createQueryBuilder('t');
return $qb
->select('count(t.id)')
->getQuery()
->useQueryCache(true)
->useResultCache(true, 3600)
->getSingleScalarResult();
}
ในบางกรณีใช้ง่าย EXTRA_LAZY
ความสัมพันธ์เอนทิตีเป็นสิ่งที่ดีhttp://doctrine-orm.readthedocs.org/projects/doctrine-orm/en/latest/tutorials/extra-lazy-associations.htmlดี