1、在
if (!ModelState.IsValid)之前给字段赋值,然后TryUpdateModel()
2、使用如下方法
public ActionResult Create([Bind(Exclude = "Created")] Model model) { .... }
3、在Global.asax.cs文件中设置
DataAnnotationsModelValidatorProvider.AddImplicitRequiredAttributeForValueTypes = false;
这样只会检查模型中声明为Required的字段
可惜对于Web Api 这些都没有办法解决!天啊!