Skip to content

Instantly share code, notes, and snippets.

@JohannesSundqvist
Created September 5, 2016 07:35
Show Gist options
  • Save JohannesSundqvist/7c6c5dade4b308d00873923753d0fa20 to your computer and use it in GitHub Desktop.
Save JohannesSundqvist/7c6c5dade4b308d00873923753d0fa20 to your computer and use it in GitHub Desktop.
using (var _context = new DataContext())
{
var query = new Customer
{
Name = name,
WorkDescription = description,
};
_context.Customers.Update(query);
_context.SaveChanges();
return query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment