Created
September 13, 2013 20:13
-
-
Save leblancmeneses/6555489 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// re-link many to many relationship | |
var items = new List<ServiceContactInformation>(); | |
foreach (var serviceContact in original.AssociatedServiceContacts) | |
{ | |
_context.Entry(serviceContact).State = EntityState.Detached; | |
var entity = new ServiceContactInformation() {Id = serviceContact.Id}; | |
items.Add(entity); | |
_context.ServiceContactInformations.Attach(entity); | |
} | |
original.AssociatedServiceContacts = items; | |
_context.EnvelopeInformations.Add(original); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment