Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. [httpGet]
  2. public httpresponsemessage EditCustomer(int id)
  3. {
  4. Customer cust = context.Customers.Find(id);
  5. cust.code = context.Shop.max(x=>x.id);
  6. context.Entry(cust).State = System.Data.EntityState.Modified;
  7. context.SaveChanges();
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement