ASP.NET Core Web API-如何使用Fluent验证执行条件相对验证

发布于 2025-01-24 16:51:16 字数 681 浏览 0 评论 0原文

在ASP.NET Core-6 Web API中,我使用流利的验证有此验证器:

public CustomerValidator()
{
    RuleFor(p => p.NotificationType)
        .Cascade(CascadeMode.StopOnFirstFailure)
        .NotEmpty().WithMessage("{PropertyName} should be not empty. NEVER!");
    RuleFor(p => p.MobileNumber)
        .Cascade(CascadeMode.StopOnFirstFailure)
        .NotEmpty().WithMessage("{PropertyName} should be not empty. NEVER!");
    RuleFor(p => p.Email)
        .EmailAddress();
}

我想使用以下条件进行验证:

如果NotificationType ='电子邮件',则需要电子邮件,

如果NotificationType ='SMS',则应需要Mobilenumber

如果NotificationType ='两个',则应需要电子邮件和Mobilenumber,

该如何实现?

谢谢

In ASP.NET Core-6 Web API, I have this validator using Fluent Validation:

public CustomerValidator()
{
    RuleFor(p => p.NotificationType)
        .Cascade(CascadeMode.StopOnFirstFailure)
        .NotEmpty().WithMessage("{PropertyName} should be not empty. NEVER!");
    RuleFor(p => p.MobileNumber)
        .Cascade(CascadeMode.StopOnFirstFailure)
        .NotEmpty().WithMessage("{PropertyName} should be not empty. NEVER!");
    RuleFor(p => p.Email)
        .EmailAddress();
}

I want to validate using these conditions:

If NotificationType = 'Email', then Email should be required

If NotificationType = 'SMS', then MobileNumber should be required

If NotificationType = 'Both', then Email and MobileNumber should be required

How do I achive this?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绻影浮沉 2025-01-31 16:51:16

您可以使用 fluentvalidation时使用

https://docs.fluentvalidation.net/en/en/latest/latest/conditions.httions.html

RuleFor(p => p.MobileNumber)
        .Cascade(CascadeMode.StopOnFirstFailure)
        .NotEmpty().WithMessage("{PropertyName} should be not empty. NEVER!")
.When(x => x.NotificationType == "SMS");

You can use the When() extension on fluentvalidation.

https://docs.fluentvalidation.net/en/latest/conditions.html

RuleFor(p => p.MobileNumber)
        .Cascade(CascadeMode.StopOnFirstFailure)
        .NotEmpty().WithMessage("{PropertyName} should be not empty. NEVER!")
.When(x => x.NotificationType == "SMS");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文