Re: Problem EOEditingContext
Re: Problem EOEditingContext
- Subject: Re: Problem EOEditingContext
- From: Maik Musall <email@hidden>
- Date: Fri, 13 Jul 2012 00:26:42 +0200
Am 12.07.2012 um 23:58 schrieb Louis Demers:
> User newUser = (User)EOUtilities.createAndInsertInstance(ec, User.ENTITY_NAME) ;
Much too wordy for my taste, and needs a cast on top of it. Just add a second constructor in your template which does ec.insertObject(this), so that you can simply use
User newUser = new User( ec );
Do not delete the parameter-less constructor though, because EOF needs that internally when restoring objects from db. But refrain from using that anywhere in your app.
Maik
_______________________________________________
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