public ActionResult Create(ChuDe cd) { //Thêm vào cơ sở dữ liệu if (ModelState.IsValid) { db.ChuDes.Add(cd); db.SaveChanges(); ViewBag.ThongBao = "Thêm mới thành công"; } else { ViewBag.ThongBao = "Thêm mới thất bại"; } return View(); }
public ActionResult Edit(ChuDe cd, FormCollection f) { //Thêm vào cơ sở dữ liệu if (ModelState.IsValid) { //Thực hiện cập nhận trong model db.Entry(cd).State = System.Data.Entity.EntityState.Modified; db.SaveChanges(); } return RedirectToAction("Index"); }