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
Ranked #72.8K
2 Posted Topics
Is this an error or C# defalt value ? How to slove this problem ?
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(); }
The End.
giangnt