Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~863 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for giangnt
Member Avatar for giangnt

My code here, I want only product.name being updated. How do I do this ? p/s: Give me many ways to do this public ActionResult EditProduct(Product product) { if (ModelState.IsValid) { db.Entry(product).State = EntityState.Modified; db.SaveChanges(); } return View(); }

Member Avatar for k.d.m
0
94

The End.