带有流畅验证集合的自定义消息

本文关键字:集合 自定义消息 验证 | 更新日期: 2023-09-27 18:27:57

我正在为泛型集合使用SetCollectionValidator。我的收藏是一个列表:

public class Answer {
  public string QuestionConst { get; set; }
  public string QuestionName { get; set; }
  public bool Required { get; set; }
  public string Answer { get; set; }
}

我有验证设置和工作,因此当项目无效时,错误消息类似于:"QuestionName不能为空"。我希望错误消息说一些类似"‘第一个问题’不能为空。"(其中,第一个问题是其中一个项目的QuestionName的值)。

我想我的问题是:是否可以在错误消息或属性名称中使用变量的值?

带有流畅验证集合的自定义消息

public class AnswersModelValidator : AbstractValidator<AnswersModel>
{
   RuleFor(customer => customer.Text)
      .NotEmpty()
      .WithMessage("This message references some other properties: Id: {0} Title: {1}", 
        answer => answer.Id, 
        answer => answer.Title
      );
}

更新:在FluentValidation:的新版本中更改了语法

WithMessage(answer => $"This message references some other properties: Id: {answer.Id} Title: {answer.Title}"

Fluent验证文档:覆盖错误消息

我在1分钟内找到了这些信息:)阅读这个图书馆的文档,因为网上关于它的信息很少。

此外,您应该使用集合验证器:

public class AnswersModelValidator : AbstractValidator<AnswersModel> {
    public AnswersModelValidator() {
        RuleFor(x => x.Answers).SetCollectionValidator(new AnswerValidator());
    }
}
public class AnswersModel
{
    public List<Answer> Answers{get;set;}
}