我正在尝试从数据库中删除员工记录,查询运行时没有任何异常,但记录没有从数据库中删除,不确定这是错误的。
try (EntityManagerWrapper wrapper = wrapEntityManager(entityFactory))
{
final EntityManager em = wrapper.get();
Employee emp= em.find( Employee.class, id);
em.remove(emp);
}