Hi
Using self Service I have an created an entity and I want to delete it and delete any related entities from the database - is this possible ??
for example
MyEntity foo = new MyEntity();
foo .FetchUsingPK(123);
foo .Delete();
This will throw an exception if any foreign keys in the database are violated ... Is there a smart way to load an entire object graph into memory and perform a cascading delete on an entity ??
Thanks