Hibernate version: 3.0.5
Hi all,
We have to entities A and B and each instance of A may have multiple instances of B. When we enable caching (EHCache) and delete one of the Bs of an A, and then list all the Bs of A we get the following error:
Code:
org.hibernate.ObjectNotFoundException : No row with the given identifier exists: [com.sun2si.nccin.entities.model.DataTypeParameterInfo#864]
The code used to delete the entity is:
Code:
getHibernateTemplate().delete(entityObject);
getSession().flush();
Could it be related to
this bug?
Thanks in advance,
Behi