如何将FluentValidation集成到MVC4中

时间:2012-11-15 19:41:12

标签: c# asp.net asp.net-mvc asp.net-mvc-4 fluentvalidation

我已经创建了一个包含FluentValidation的简单模型,但它似乎不起作用。

  • 我的数据库正在使用空名称和传递进行更新 TryUpdateModel()
  • 提交表单时,我没有收到客户端验证错误

我尝试在FluentValidationModelValidatorProvider.Configure();中添加Application_Start(),但它显示即使我添加了使用类,它也找不到FluentValidationModelValidatorProvider。我还尝试在我的模型类之上添加[Validator(typeof(Category))]但没有做任何事情。 This我们一直在寻找信息的资源。

模型

public class Category
{
    public int ID { get; set; }
    public string Name { get; set; }
    virtual public ICollection<Image> Images { get; set; }
}

public class CategoryValidator : AbstractValidator<Category>
{
    public CategoryValidator()
    {
        RuleFor(x => x.Name).NotEmpty().WithMessage("Category name is required.");
    }
}

控制器

[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Edit(Category c)
{
    var category = _db.Categories.Where(x => x.ID == c.ID).SingleOrDefault();
    if (category == null) return HttpNotFound();

    // Update model and return to category list
    if (TryUpdateModel(category)) // it passes with empty name and saves changes
    {
        _db.SaveChanges();
        return RedirectToAction("index", "category");
    }

    // Something is wrong, return view back
    return View(c);
}

1 个答案:

答案 0 :(得分:7)

听起来你错过了FluentValidation.Mvc引用。尝试安装FluentValidation.MVC4 NuGet包。

然后按照MVC instructions