Re: multiple objects in an EO, how to saveChanges() on only one
Re: multiple objects in an EO, how to saveChanges() on only one
- Subject: Re: multiple objects in an EO, how to saveChanges() on only one
- From: Dev WO <email@hidden>
- Date: Sun, 16 Oct 2005 01:24:59 +0200
Thank you guys, just did it and it works perfectly:)
Xavier
this line:
YourObjectClass b = (YourObjectClass)EOUtilities.localInstanceOfObject(newEC, yourObject);
should be like this instead (to avoid possible confusion for you):
YourObjectClass transferredObject = (YourObjectClass)EOUtilities.localInstanceOfObject(newEC, b);
; - )
On Oct 15, 2005, at 5:46 PM, Dev WO wrote: Hi list, I have different object in the editing context, lets say a, b and c. I need to save changes to the database only for b (for example;)). I though b().editingContext().saveChanges() would do the trick, but it also tries to save all other object...
Anyone with a clue on how to handle this?
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden