コード例 #1
0
 public ActionResult EditCategory(web_vangia_category model)
 {
     db.Entry(model).State = EntityState.Modified;
     db.SaveChanges();
     return(RedirectToAction("IndexCategory"));
 }
コード例 #2
0
 public ActionResult CreateCategory(web_vangia_category model)
 {
     db.web_vangia_category.Add(model);
     db.SaveChanges();
     return(RedirectToAction("IndexCategory"));
 }