コード例 #1
0
ファイル: GamesController.cs プロジェクト: park9140/GARDIS
 public ActionResult Edit(Game game)
 {
     if (ModelState.IsValid)
     {
         context.Games.Update(game);
         return RedirectToAction("Index");
     }
     return View(game);
 }
コード例 #2
0
ファイル: GamesController.cs プロジェクト: park9140/GARDIS
        public ActionResult Create(Game game)
        {
            if (ModelState.IsValid)
            {
                context.Games.Insert(game);
                return RedirectToAction("Index");
            }

            return View(game);
        }