Skip to content

Instantly share code, notes, and snippets.

@leblancmeneses
Created September 13, 2013 20:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leblancmeneses/6555489 to your computer and use it in GitHub Desktop.
Save leblancmeneses/6555489 to your computer and use it in GitHub Desktop.
// 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