gpt4 book ai didi

c# - 多个属性的 FluentValidation 规则

转载 作者:行者123 更新时间:2023-12-03 08:20:49 25 4
gpt4 key购买 nike

我有一个 FluentValidator,它有多个属性,如 zip 和 County 等。我想创建一个规则,它需要两个属性,就像 RuleFor 构造一样

public class FooArgs
{
public string Zip { get; set; }
public System.Guid CountyId { get; set; }
}

public class FooValidator : AbstractValidator<FooArgs>
{
RuleFor(m => m.CountyId).Must(ValidZipCounty).WithMessage("wrong Zip County");
}

这有效,但我想将 Zip 和 County 都传递到 rue 以进行验证。实现这一目标的最佳方法是什么?

最佳答案

有一个Must重载还为您提供 FooArgs记录的对象 here .它允许您轻松地将两个参数传递到您的方法中,如下所示:

RuleFor(m => m.CountyId).Must((fooArgs, countyId) =>
ValidZipCounty(fooArgs.Zip, countyId))
.WithMessage("wrong Zip County");

关于c# - 多个属性的 FluentValidation 规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20529085/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com