5

我正在尝试对 ASP.NET MVC 项目使用流利的验证。我正在尝试验证我的视图模型。

这是我的视图模型,

[Validator(typeof(ProductCreateValidator))]
public class ProductCreate
{
    public string ProductCategory   { get; set; }
    public string ProductName       { get; set; }
    ....
}

这是我的验证器类,

public class ProductCreateValidator : AbstractValidator<ProductCreate> 
{
    public ProductCreateValidator()
    {
        RuleFor(product => product.ProductCategory).NotNull();
        RuleFor(product => product.ProductName).NotNull();
    }
}

在我的控制器中,我正在检查我的 ModelState 是否有效,

[HttpPost]
public ActionResult Create(ProductCreate model)
{
    /* This is a method in viewmodel that fills dropdownlists from db */
    model.FillDropDownLists();

    /* Here this is always valid */
    if (ModelState.IsValid)
    {
        SaveProduct(model);
        return RedirectToAction("Index");
    }

    // If we got this far, something failed, redisplay form
    return View(model);
}

这就是我所拥有的。当我的视图模型完全为空时,我的问题是ModelState.IsValid返回。true我是否需要手动配置 Fluent 验证以便可以将模型错误添加到 ModalState 中?

4

1 回答 1

7

正如文档所解释的那样,确保您在您的文件中添加了以下行,Application_Start以便交换数据注释模型元数据提供程序并改用流式验证:

FluentValidationModelValidatorProvider.Configure();

您的行为中的以下评论也让我感到害怕:

/* This is a method in viewmodel that fills dropdownlists from db */
model.FillDropDownLists();

视图模型不应该知道数据库的含义。因此,在您的视图模型中使用此类方法是一种非常错误的方法。

于 2012-07-26T11:57:42.813 回答