Donald, I'm using Geronimo 2.1.4 -> openjpa 1.2. I tried to detach with the following code :
OpenJPAEntityManager jpaEm = OpenJPAPersistence.cast(em); ... Query query = em.createQuery(buffer.toString()); List<TradeConfirmation> result = query.getResultList(); result = (List<TradeConfirmation>) jpaEm.detachAll(result); em.flush(); em.clear(); without success :( -- View this message in context: http://n2.nabble.com/How-to-unenhance-entities-tp4749734p4752007.html Sent from the OpenJPA Users mailing list archive at Nabble.com.
