我正在使用Symfony2(2.6),我想在名为CRM的命令中使用Contact实体的自定义存储库:fetchEmails.
我尝试了两种不同的方法来获取存储库:
第一种方法:
在我的命令文件的执行功能中
$repository = $this->getContainer()->get('doctrine')->getEntityManager()->getRepository('CRMBundle:Contact');
第二种方法:
在我的命令文件的执行功能中
$repository = $this->getContainer()->get('myrepository');
在config.yml中
myrepository:
class: Doctrine\ORM\EntityRepository
factory: [@doctrine.orm.entity_manager, getRepository]
arguments:
- CRMBundle\Entity\Contact
使用第一种或第二种方法时,我在执行命令时遇到此错误:
[Symfony\Component\Debug\Exception\ContextErrorException] Notice: Undefined property: Doctrine\ORM\Configuration::$getRepository CRM:fetchEmails [name]
有谁知道如何解决我的问题?
最佳答案 我会继承ContainerAwareCommand来解决这个问题:
public class MyCommand extends ContainerAwareCommand
{ ... }
ContainerAwareCommand是Command的基类,但可以访问容器(就像在基于Controller的类中一样,因此您可以通过执行$this-> getContainer() – > getDoctrine()来访问您的仓库 – > getRepository( “BUNDLENAME:MyRepo”).
如果有帮助,请告诉我!