3

我有这个错误:

致命错误:第 578 行的 C:\wamp\www\Videotheque\vendor\doctrine\lib\Doctrine\ORM\EntityManager.php 中找不到类 'gsyle39\VideothequeBundle\Repository\GenreRepository'

不过,我将存储库类的名称添加到我的实体的映射定义中:

/**
* gsyle39\VideoThequeBundle\Entity\Genre
*
* @ORM\Table()
*
* @ORM\Entity(repositoryClass="gsyle39\VideothequeBundle\Repository\GenreRepository")
*/
class Genre
{
   ...
}

这是我的 GenreRepository :

<?php

namespace gstyle39\VideothequeBundle\Entity;

use Doctrine\ORM\EntityRepository;

/**
 * GenreRepository
 *
 * This class was generated by the Doctrine ORM. Add your own custom
 * repository methods below.
 */
class GenreRepository extends EntityRepository
{
    public function myfindAll()
    {
        $genres = $this->_em->createQueryBuilder('g')
            // leftJoin because I need all the genre
            ->leftJoin('g.films', 'f')
            ->addSelect('COUNT(f)')
            ->groupBy('g')
            ->getQuery()
            ->getArrayResult();

        // $genres contains all the genres and the associated movies
        return ($genres);
    }
}  

最后,这是我的控制器中我用来调用我的客户“findALL”的方法:

public function getListGenresAction(){

        $liste_genres = $this->getDoctrine()
                             ->getEntityManager()
                             ->getRepository('gstyle39VideothequeBundle:Genre')
                             ->myFindAll;

        return $this->render('gstyle39VideothequeBundle:Videotheque:test.html.twig', array(
            'genres' => $liste_genres
        ));
   }
4

1 回答 1

3

您的存储库具有 as 命名空间namespace gstyle39\VideothequeBundle\Entity;,注释说它应该是namespace gstyle39\VideothequeBundle\Repository;.

另外,请确保将其放在src/gstyle39/VideothequeBundle/Repository目录下。

于 2012-07-31T14:18:56.887 回答