Esempio n. 1
0
 public void UpdateCustomer(Customer customer)
 {
     using (var context = new RepositoryContext())
     {
         context.CustomersCollection.Attach(customer);
         var entry = context.Entry(customer);
         entry.Property(x => x.Name).IsModified = true;
         entry.Property(x => x.Surmame).IsModified = true;
         context.SaveChanges();
     }
 }