MVC 4 に非常に基本的な問題があります。「EditorForModel」を使用して単純なフォームをレンダリングしようとしていますが、HTML は常に空白です (例外も何もありません)。
ビューモデル:
public class ProjectViewModel {
public int ProjectId { get; set; }
public string ProjectName { get; set; }
public string Client { get; set; }
public bool Secured { get; set; }
public DateTime StartDate { get; set; }
}
コントローラーのアクション:
[HttpGet]
public ActionResult New() {
return View(new ProjectViewModel());
}
意見:
@model BuMan.ViewModels.ProjectViewModel
@{ Html.EditorForModel();}
私は明らかに非常に明白な何かを欠いていますが、それは各プロパティのいくつかのデフォルト入力をレンダリングするべきではありませんか?!