何时在 Symfony2 中使用实体管理器



目前我正在学习如何使用Symfony2。我到了他们解释如何使用教义的地步。

在给出的示例中,他们有时使用实体管理器:

$em = $this->getDoctrine()->getEntityManager();
$products = $em->getRepository('AcmeStoreBundle:Product')
        ->findAllOrderedByName();

在其他示例中,不使用实体管理器:

$product = $this->getDoctrine()
        ->getRepository('AcmeStoreBundle:Product')
        ->find($id);

所以我实际上尝试了第一个示例,但没有获得实体管理器:

$repository = $this->getDoctrine()
        ->getRepository('AcmeStoreBundle:Product');
$products = $repository->findAllOrderedByName();

并得到了相同的结果。

那么我什么时候真正需要实体管理器,什么时候可以一次访问存储库?

查看Controller getDoctrine()等于 $this->get('doctrine')SymfonyBundleDoctrineBundleRegistry 的一个实例。注册表提供:

  • getEntityManager()返回DoctrineORMEntityManager,这反过来又提供了getRepository()
  • getRepository()返回DoctrineORMEntityRepository

因此,$this->getDoctrine()->getRepository()等于$this->getDoctrine()->getEntityManager()->getRepository()

当您想要保留或删除实体时,实体管理器很有用:

$em = $this->getDoctrine()->getEntityManager();
$em->persist($myEntity);
$em->flush();

如果您只是获取数据,则只能获取存储库:

$repository = $this->getDoctrine()->getRepository('AcmeStoreBundle:Product');
$product    = $repository->find(1);

或者更好的是,如果您使用的是自定义存储库,请将getRepository()包装在控制器函数中,因为您可以从 IDE 获得自动完成功能:

/**
 * @return AcmeHelloBundleRepositoryProductRepository
 */
protected function getProductRepository()
{
    return $this->getDoctrine()->getRepository('AcmeHelloBundle:Product');
}

我认为getDoctrine()->getRepository()只是getDoctrine()->getEntityManager()->getRepository()的快捷方式。没有检查源代码,但对我来说听起来很合理。

如果您计划使用实体管理器执行多个操作(例如获取存储库,持久保存实体,刷新等),则首先获取实体管理器并将其存储在变量中。否则,您可以从实体管理器获取存储库,并在一行中对存储库类调用所需的任何方法。两种方式都有效。这只是编码风格和您的需求的问题。

相关内容

  • 没有找到相关文章

最新更新