1

我们在 Symfony2 项目中从控制器调用某个自定义实体存储库函数时遇到问题。我们之前已经成功地与其他实体一起完成了它,所以我们可能遗漏了一些东西,我无法弄清楚它可能是什么。

我们的存储库类如下所示:

<?php

namespace OurSite\Bundle\OurBundle\Entity;
use Doctrine\ORM\EntityRepository;

class BlogRepository extends EntityRepository
{
    public function findPreviousPosts($limit = 6)
    {

        $q = $this->createQueryBuilder('q')
            ->where('q.category = :category')            
            ->setMaxResults($limit)                                                           
            ->add('orderBy', 'q.published ASC')
            ->getQuery();
        $res = $q->getResult();
        return $res;
    }
}

实体:

<?php

namespace OurSite\Bundle\OurBundle\Entity;

use Gedmo\Mapping\Annotation as Gedmo;
use Doctrine\ORM\Mapping as ORM;

/**
* OurSite\Bundle\OurBundle\Entity\Blog
*
* @ORM\Table()
* @ORM\Entity(repositoryClass="OurSite\Bundle\OurBundle\Entity\BlogRepository")
*/
class Blog {
    // Non-relevant stuff here
}

当我们这样调用方法时:

$em = $this->getDoctrine()->getEntityManager();
$previousPosts = $em->getRepository('OurSiteOurBundle:Blog')->findPreviousPosts();

我们得到这个:

Undefined method 'findPreviousPosts'. The method name must start with either findBy or findOneBy!

如果我们这样做,就会按预期echo get_class($em->getRepository('OurSiteOurBundle:Blog'));输出。BlogRepository

什么可能导致问题?我们bundle在项目中有一个多余的目录,但我猜这不会导致它?

4

5 回答 5

6

从您提供的来源来看,这可能不是您的问题,但它可能会为其他人节省一些搜索时间。

我遇到了同样的“必须以 findBy 或...开头”错误,结果在我的实体定义中我不小心两次调用了 @ORM\Entity 注释。第一次我正确使用它并设置了repositoryClass,但第二次我只是单独使用它(就像一个没有自定义存储库的实体一样),这样就覆盖了以前的repositoryClass定义。

 /**
 *
 * @ORM\Entity(repositoryClass="Company\TestBundle\Entity\MyEntityRepository")
 * @ORM\Table(name="testing_my_entity")
 * @ORM\Entity
 */

class MyEntity
{
etc...
}
于 2013-05-28T23:04:22.010 回答
3

我有同样的问题。我看过很多关于这个的帖子,但没有解决它。

最后我发现那是因为我之前使用的是生成的 yml 文件,所以 Doctrine 没有读取映射的注解!

所以只要确保你没有任何 yml/xml Doctrine 文件。

接着 :

app/console doctrine:cache:clear-metadata
于 2013-07-23T14:27:31.443 回答
3

如果您收到此错误:The method name must start with either findBy or findOneBy!这意味着您的自定义存储库未加载。

检查代码中的拼写错误,清除缓存,确保“OurSiteOurBundle”是实际的快捷方式名称。

于 2012-11-27T07:43:37.840 回答
0

如果使用 xml 进行映射(通过测试):更新 xml 或 yml 映射文件,添加存储库类属性:

<entity name="Ccd\Bundle\FrontendBundle\Entity\UvUpdatePageContent" table="uv_update_page_content" **repository-class="Ccd\Bundle\FrontendBundle\Entity\UvUpdatePageContentRepository"**>

http://doctrine-mongodb-odm.readthedocs.org/en/latest/cookbook/mapping-classes-to-orm-and-odm.html 然后更新学说缓存:

php app/console doctrine:cache:clear-metadata

使用 yml(未测试):

Acme\DemoBundle\Entity\Post:
  type: entity
  table: posts
  RepositoryClass: Acme\DemoBundle\Entity\PostRepository 
于 2014-05-02T18:47:47.800 回答
0

你以前用过这个实体吗?我看到博客的奇怪实体快捷方式

OurSiteOurBundle:博客

但是您的博客有 OurSite\ Bundle \OurBundle\Entity 命名空间。我认为应该是

OurSiteBundleOurBundle:博客

实体管理器将您指向错误的存储库类

于 2012-11-26T17:57:12.320 回答