如何使用最新的 Symfony 和 Doctrine 从控制器内部获取实体管理器?
“The Book”中描述的方式现在被标记为已弃用。什么是现代(正确)方法来做到这一点?
public function someAction()
{
// getEntityManager() from Doctrine\Bundle\DoctrineBundle\Registry is deprecated
$entityManager = $this->getDoctrine()->getEntityManager();
...
}