Beispiel #1
0
 public void Edit(User user)
 {
     using (FondMcfoContext db = new FondMcfoContext())
     {
         db.Entry(user).State = EntityState.Modified;
         db.SaveChanges();
     }
 }