vote up 2 vote down star
3

The following simplified code doesn't work (because it sets the retrieved object reference to the parameter), but it shows what I want to do

 public bool updateEvent(clubEvent newEvent)
    {
        TNightCon tCon = new TNightCon();
        clubEvent cEv = (from cEvent in tCon.clubEvents
                         where cEvent.EventID == newEvent.EventID
                         select cEvent).First();

        // Won't work, but do I have to set all the fields manually?
        cEv = newEvent;
        tCon.SubmitChanges();
        return true;
    }
flag

73% accept rate

2 Answers

vote up 1 vote down check

You don't need to retrieve the current object to do what you need to do. If the Ids are the same, all you need to do is attach the new object to your context. The trick then becomes getting Linq2SQL to treat the object as "dirty". Timothy Khouri has a blog post that details a useful technique using the Refresh method on the context. Here's what it'd look like.

 public bool updateEvent(clubEvent newEvent)
    {
        tCon.clubEvents.Attach(newEvent);
        tCon.Refresh(RefreshMode.KeepCurrentValues, settings)
        tCon.SubmitChanges();
        return true;
    }
link|flag
vote up 2 vote down

Or, alternately,

  tCon.ClubEvents.DeleteOnSubmit(cEv);
  tCon.CLubEvents.InsertOnSubmit(newEvent);
  tCon.SubmitChanges();
link|flag
How safe is this though? Is there not a chance that between the deletion and the creation of the record that a query will try and find the record, but it won't exist? Or will SQL server complete these type of operations before it deals with new requests? – Tarks Apr 16 at 0:03
1  
The delete & insert should be handled as a transaction by the SubmitChanges() – James Curran Apr 16 at 4:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.