两个备注:
- 在模型上使用公共属性而不是字段
- 您尝试验证的实例需要通过模型绑定器才能正常工作
我认为第一句话不需要太多解释:
public class Filter
{
[StringLength(5)]
public String Text { get; set; }
}
public class MainObject
{
public Filter Filter { get; set; }
}
至于第二个,这是它不起作用的时候:
public ActionResult Index()
{
// Here the instantiation of the model didn't go through the model binder
MainObject mo = GoFetchMainObjectSomewhere();
bool isValid = TryValidateModel(mo); // This will always be true
return View();
}
这是它何时起作用:
public ActionResult Index(MainObject mo)
{
bool isValid = TryValidateModel(mo);
return View();
}
当然,在这种情况下,您的代码可以简化为:
public ActionResult Index(MainObject mo)
{
bool isValid = ModelState.IsValid;
return View();
}
结论:你很少需要TryValidateModel
.