hi,

i want to delte the object,which is having child associated objects,it is working fine with the Db4o standalone mode,i have tried like this,working fine..

Db4o.configure().objectClass("com.A").cascadeOnDel ete(true);
how to use same thing using spring with Db4o?i have tried like this in DAOImpl.

getDb4oTemplate().getObjectContainer().ext().confi gure().objectClass("com.A").cascadeOnDelete(true);
it is deleting the parent object only,not the child object

can any one help me..