Skip to content

Instantly share code, notes, and snippets.

@eyston
Created April 4, 2012 01:00
Show Gist options
  • Select an option

  • Save eyston/2296834 to your computer and use it in GitHub Desktop.

Select an option

Save eyston/2296834 to your computer and use it in GitHub Desktop.
var db = new PortalContext();
var profile = new Profile()
{
Id = 20,
FirstName = "Tyler",
LastName = "Durden"
};
db.Entry(profile).State = EntityState.Modified;
db.SaveChanges();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment