I have two objects A and B, each extending EOGenericRecord.
Object A has a field of type B.
Now, when I create a new Object A which embeds a new object B, before
performing an EditingContext.saveChanges
I must insert each object separately in my editingContext:
myContext.insertObject(B);
myContext.insertObject(A);
myContext.saveChanges();
.... which is rapidly over-complicated when saving complex object-graphs
Now, in order to perform the saveChanges in a more elegant way, can
someone tell me if
there is a method to override, method called by
EditingContext.saveChanges, in which I could
in each EOGenericRecord do the insertObject work ?