Example #1
0
 public ActionResult Edit([Bind(Include = "id,game_name,image,create_date")] t_game_master t_game_master)
 {
     if (ModelState.IsValid)
     {
         db.Entry(t_game_master).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(t_game_master));
 }