Entity Framework. Updating EntityCollection using disconnected objects via navigation property.

Posted by yougotiger on Stack Overflow See other posts from Stack Overflow or by yougotiger
Published on 2010-04-22T05:55:11Z Indexed on 2010/05/11 17:24 UTC
Read the original article Hit count: 299

I have a question, much liket this unanswered one. I'm trying to work with the entity framework, and having a tough time getting my foreign tables to update. I have something basically like this in the DB:

Incident (table): -ID -other fields

Responses (table): -FK:Incident.ID -other fields

And and entities that match: Incident (entity) -ID -Other fields -Responses (EntityCollection of Responses via navigation property)

Each Incident can have 0 or more responses.

In my Webpage, I have a form to allow the user to enter all the details of an Incident, including a list of responses. I can add everything to the database when a new Incident is created, however I'm having difficulty with editing the Incident.

When the page loads for edit, I populate the form and then store the responses in the viewstate. When the user changes the list of responses (adds one, deletes one or edits one). I store this back into the viewstate. Then when the user clicks the save button, I'd like to save the changes to the Incident and the Responses back to the DB. I cannot figure out how to get the responses from the detached viewstate into the Incident object so that they can be updated together.

Currently when the user clicks save, I'm getting the Incident to edit from the db, making changes to the Incident's fields and then saving it back to the DB. However I can't figure out how to have the detached list of responses from the viewstate attach to the Incident. I have tried the following without success:

  • Clearning the Incident.Responses collection and adding the ones from the viewstate back in:

    Incident.Responses.Clear()
    for each objResponse in Viewstate("Responses")
    Incident.Responses.add(objResponse)
    next

  • Creating an EntityCollection from my list and then assiging that to the Incident.Responses Incident.Responses = EntityCollectionFromViewstateList

  • Iterating through the responses in Incident.Response and assigning the corresponding object from viewstate:
    for each ObjResponse in Incident.Responses
    objResponse = objCorrespondingModifedResonseFromViewState
    Next

These all fail, I'd like to be able to merge the changes into the Inicdent object so that when the BLL calls SaveChanges on the changes to both the Incident and Responses will happen at the same time.

Any suggestions? I keep finding lots of stuff about assigning foreign keys (singular), but I haven't found a great solution for doing a set of entities assigned to another entity in this manner.

© Stack Overflow or respective owner

Related posts about entity-framework

Related posts about ASP.NET