How to Create custom Repository Classes
Warning: You are browsing the documentation for Symfony 3.x, which is no longer maintained.
Read the updated version of this page for Symfony 7.1 (the current stable version).
Constructing and using complex queries inside controllers complicate the maintenance of your application. In order to isolate, reuse and test these queries, it's a good practice to create a custom repository class for your entity. Methods containing your query logic can then be stored in this class.
To do this, add the repository class name to your entity's mapping definition:
1 2 3 4 5 6 7 8 9 10 11 12
// src/AppBundle/Entity/Product.php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="AppBundle\Repository\ProductRepository")
*/
class Product
{
// ...
}
Then, create an empty AppBundle\Repository\ProductRepository
class extending
from Doctrine\ORM\EntityRepository
.
Next, add a new method - findAllOrderedByName()
- to the newly-generated
ProductRepository
class. This method will query for all the Product
entities, ordered alphabetically by name:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// src/AppBundle/Repository/ProductRepository.php
namespace AppBundle\Repository;
use Doctrine\ORM\EntityRepository;
class ProductRepository extends EntityRepository
{
public function findAllOrderedByName()
{
return $this->getEntityManager()
->createQuery(
'SELECT p FROM AppBundle:Product p ORDER BY p.name ASC'
)
->getResult();
}
}
Tip
The entity manager can be accessed via $this->getEntityManager()
from inside the repository.
You can use this new method just like the default finder methods of the repository:
1 2 3 4 5 6 7 8 9
use AppBundle\Entity\Product;
// ...
public function listAction()
{
$products = $this->getDoctrine()
->getRepository(Product::class)
->findAllOrderedByName();
}
Note
When using a custom repository class, you still have access to the default
finder methods such as find()
and findAll()
.