The EntityManager is closed

前端 未结 17 1734
星月不相逢
星月不相逢 2020-11-29 18:36
[Doctrine\\ORM\\ORMException]   
The EntityManager is closed.  

After I get a DBAL exception when inserting data, EntityManager closes and I\'m not

17条回答
  •  遥遥无期
    2020-11-29 19:04

    Symfony 2.0:

    $em = $this->getDoctrine()->resetEntityManager();
    

    Symfony 2.1+:

    $em = $this->getDoctrine()->resetManager();
    

提交回复
热议问题