public ActionResult EditPost(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } var customerToUpdate = db.Customers.Find(id); if (TryUpdateModel(customerToUpdate, "", new string[] { "CustomerID", "CustomerFirst", "CustomerLast", "CustomerAddress", "CustomerEmail" })) { try { db.Entry(customerToUpdate).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } catch (DataException /* dex */) { //Log the error (uncomment dex variable name and add a line here to write a log. ModelState.AddModelError("", "Unable to save changes. Try again, and if the problem persists, see your system administrator."); } } return(View(customerToUpdate)); }
public ActionResult Edit([Bind(Include = "LotID,GoatID,CustomerID,GoatName,CustomerFirst,CustomerLast,LotAddress,LotDescription")] Lot lot) { if (ModelState.IsValid) { db.Entry(lot).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } return(View(lot)); }
public ActionResult Edit([Bind(Include = "GoatID,GoatName,GoatColor,GoatType,GoatGender")] Goat goat) { if (ModelState.IsValid) { db.Entry(goat).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } return(View(goat)); }