Skip to content

Instantly share code, notes, and snippets.

@jgabrielfreitas
Created December 11, 2018 02:54
Show Gist options
  • Select an option

  • Save jgabrielfreitas/70fe6b6394aab9f30ccfc38a68a76ba6 to your computer and use it in GitHub Desktop.

Select an option

Save jgabrielfreitas/70fe6b6394aab9f30ccfc38a68a76ba6 to your computer and use it in GitHub Desktop.
public void Update(User user)
{
var result = db.Users.SingleOrDefault(currentUser => currentUser.Id == user.Id);
if (result != null)
{
db.SaveChanges();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment