コード例 #1
0
ファイル: HomeController.cs プロジェクト: haiku80/tolleranza
 public ActionResult Create(News news)
 {
     try
       {
     this.RavenSession.Store(news);
     return RedirectToAction("Index");
       }
       catch
       {
     return View();
       }
 }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: haiku80/tolleranza
 //
 // GET: /Home/Create
 public ActionResult Create()
 {
     var model = new News();
       return View(model);
 }