在实体的存储库中,我想获取具有给定 id 的实体或创建一个新实体,如果到目前为止没有使用给定的 id。我的解决方案是,使用 id 创建一个新实体。如果可以,我会退回它,如果没有,我想加载现有的。非常糟糕,这是不可能的,因为实体管理器已关闭。
class TestRepository extends Repository {
// create a new entity or load the existing one
public function getEntity($pkey) {
$entity = new Entity($pkey); // create a new entity and set its id to $pkey
$this->getEntityManager()->persist($language);
try {
$this->getEntityManager()->flush(); // success if $pkey isn't used
} catch (DBALException $e) {
// this DBALException is catched correct
// fail - load the existing one
$entity = $this->find(array($pkey)); // another exception is thrown
// The EntityManager is closed.
}
return $entity;
}
}
如何重新打开 EntityManger?