Symfony2 Doctrine自定义存储库类[语义错误]第0行,第14行靠近'Project p':错误:类'Project'未定义

时间:2013-09-22 00:29:47

标签: php symfony doctrine-orm

我在Symfony 2和Doctrine中真的很新,并且有一个简单的问题:

我的存储库中有一个非常简单的代码:

<?php

namespace BakeryIT\BakeryBundle\Entity;

use Doctrine\ORM\EntityRepository;

class ProjectRepository extends EntityRepository
{
    public function findHistory(){
        return $this->getEntityManager()
        ->createQueryBuilder()
        ->select('p')
        ->from('Project','p')
        ->getQuery()
        ->getResult();
    }
}

我的控制器中有两个简单的功能:

<?php

namespace BakeryIT\BakeryBundle\Controller;

/*
...
*/

class ProjectController extends Controller
{
    public function indexAction()
    {
        return $this->index('Project', 'findHistory');
    }
}

控制器看起来像这样:

public function index($entity, $query = 'findAll')
{
    $repository = $this->getDoctrine()
        ->getRepository('BakeryBundle:'.$entity);

    $data = $repository->$query();

    return $this->render('BakeryBundle:'.$entity.':index.html.twig',
    array('data' => $data));
}

这段代码告诉我语义错误 [语义错误]第0行,第14行靠近'Project p':错误:类'Project'未定义。

另一方面,如果我在我的存储库中更改此行,一切都会正常工作:

->from('Project','p')

->from('BakeryIT\BakeryBundle\Entity\Project','p')

我不知道为什么这个例子在第一种情况下不起作用。 我的BakeryIT \ BakeryBundle \ Entity \ Project中的命名空间以这种方式设置:

namespace BakeryIT\BakeryBundle\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * Project
 *
 * @ORM\Table()
 * @ORM\Entity(repositoryClass="BakeryIT\BakeryBundle\Entity\ProjectRepository")
 */
class Project
{
/*
..
*/
}

2 个答案:

答案 0 :(得分:7)

要使用简短表单,您还需要提供包名称。这是从供应商和包名称构造的。在你的情况下,它将是这样的:

from('BakeryITBakeryBundle:Project')

有关捆绑包的更多信息,请参阅以下链接:

http://symfony.com/doc/current/cookbook/bundles/best_practices.html

答案 1 :(得分:0)

在我的本地系统上,我可以使用

$entityManager->createQuery('DELETE FROM BellaShopBundle:cache c WHERE c.expires < :now')->setParameter('now', $date);

但是在制作时,有必要将实体或类名称大写,我想我认为这是表名,因此:

$entityManager->createQuery('DELETE FROM BellaShopBundle:Cache c WHERE c.expires < :now')->setParameter('now', $date);