i need help with doctrine in symfony, i'd like to extend/customize an entity repository...so i made a class in the Respository folder of the bundle (wich didn't exist) but i don't know what else to do apart of extend the class from EntityRepository.
Here is the code:
<?php
class InvitadoRepository extends EntityRepository
{
public function findOneByIdJoinedToCategory($id)
{
$query = $this->getEntityManager()
->createQuery('
SELECT p, c FROM AcmeStoreBundle:Product p
JOIN p.category c
WHERE p.id = :id'
)->setParameter('id', $id);
try {
return $query->getSingleResult();
} catch (\Doctrine\ORM\NoResultException $e) {
return null;
}
}
}
?>
So here is how it looks in my project: