ビューで強い型ヘルパーを使用するために、ラムダ式を使用してこのヘルパーメソッドを作成しました
ヘルパー
public static string DateFor<TModel, TDate>(this HtmlHelper<TModel> helper, Expression<Func<TModel, TDate>> expression)
{
ModelMetadata data = ModelMetadata.FromLambdaExpression(expression, helper.ViewData);
StringBuilder sb = new StringBuilder();
...
//code that creates three dropdownlist (day, month and year)
...
}
見る
<%= Html.LabelFor(model => model.DataNascita) %>
コントローラ
[HttpPost]
public ActionResult Edit(int id, Account MyAccount)
{
...
return View(...);
}
私の問題は、MyAccount.DataNascitaが、編集フォームで選択した値(日付の最小値..例:1900/01/01)で設定されていないことです。
投稿の編集アクションでバインドする方法は?