MVC3 - UpdateModel ...如何更改传入数据?

时间:2011-11-01 01:32:10

标签: asp.net-mvc-3 lightspeed

UpdateModel失败,因为arcm.Notes为null进入此方法,我希望它是一个空字符串。

在将Notes设置为“”后,我可能需要刷新ValueProvider(?),因此我可以使用UpdateModel。

 public ActionResult Edit1(Guid id, ActivityResponseConsumerMobile arcm) {
        if (arcm.Notes == null)
            arcm.Notes = "";

        if (!ModelState.IsValid) {
            SetupDropDowns();
            return View(arcm);
        }

        ActivityResponseConsumerMobile arcmDb = uow.ActivityResponseConsumerMobiles.Single(a => a.Id == id);
        try {
            UpdateModel(arcmDb, null, null, new[] { "Id" });

1 个答案:

答案 0 :(得分:1)

这是我认为自MVC2以来的默认行为。 请注意一个解决方法:

http://brianreiter.org/2010/09/16/asp-net-mvc-2-0-undocumented-model-string-property-breaking-change/


public sealed class EmptyStringModelBinder : DefaultModelBinder
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        bindingContext.ModelMetadata.ConvertEmptyStringToNull = false;
        return base.BindModel(controllerContext, bindingContext);
    }
}

注册活页夹


protected void Application_Start()
{
    ModelBinders.Binders.DefaultBinder = new EmptyStringModelBinder();
    RegisterRoutes( RouteTable.Routes );
}