この問題を抱えているのは私だけですか、それともまったく間違った方向に進んでいますか。
DateTime値を渡すビューがあります:
<div class="control-group">
@Html.Label("Appointment date", null, new { @class = "control-label" })
<div class="controls">
<div class="input-append">
@Html.TextBoxFor(model => model.Appointment.Client_PreferredDate, new { @readonly = "readonly" })
<span class="add-on margin-fix"><i class="icon-th"></i></span>
</div>
<p class="help-block">
@Html.ValidationMessageFor(model => model.Appointment.Client_PreferredDate)
</p>
</div>
値はControllerアクションに渡されます(値を確認でき、DateTimeではない形式を指定していることがわかります。つまり、dd-MM-yyyyになります)。次に、コントローラーで再フォーマットします。
[HttpPost]
public ActionResult RequestAppointment(General_Enquiry model, FormCollection fc)
{
model.Appointment.Client_PreferredDate = Utilities.formatDate(fc["Appointment.Client_PreferredDate"]);
ModelState.Remove("Appointment.Client_PreferredDate");
try
{
if (ModelState.IsValid)
{
model.Branch_Id = Convert.ToInt32(fc["selectedBranch"]);
model.Appointment.Branch_Id = Convert.ToInt32(fc["selectedBranch"]);
db.General_Enquiry.AddObject(model);
db.SaveChanges();
return RedirectToAction("AppointmentSuccess", "Client");
}
}
catch (Exception e)
{
Debug.WriteLine("{0} First exception caught.", e);
Debug.WriteLine(e.InnerException);
ModelState.AddModelError("", e);
}
return View(model);
}
私ができる最善のことは、ModelState.Remove()を使用することです。これは、私が本当に不快に感じるものです。モデルがビューからコントローラーに渡されるとき、コントローラーで何かを実行する前に、ModelStateがすでに無効に設定されていると思われます。何か案は?
ModelState.Remove()を呼び出すと、すべてがスムーズに進み、DateTimeはSQLサーバーデータベースによって受け入れられます。
少なくとも、いつでもModelStateを更新または「更新」できれば、問題は解決します。
乾杯。