MVC DataAnnotations - 需要填充一组中的至少一个字段

发布于 2024-09-10 13:05:31 字数 180 浏览 5 评论 0原文

如何使用 DataAnnotations 来验证是否至少填写了其中一个字段?

    public string Name { get; set; }
    public string State { get; set;}
    public string Zip { get; set;}

How can I use DataAnnotations to validate that at least one of these fields are filled in?

    public string Name { get; set; }
    public string State { get; set;}
    public string Zip { get; set;}

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

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

发布评论

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

评论(1

公布 2024-09-17 13:05:31

要使用 DataAnnotations 执行此操作,您将需要创建一个自定义属性,因为据我所知,没有内置属性可以处理此问题。

为了帮助您入门,当您启动一个新的 MVC 项目时,会在类级别应用一个名为“PropertiesMustMatchAttribute”的类。你可以以此为基础,没有太大困难

To do it using DataAnnotations you will need to make a custom attribute because as far as I know there is no built in attribute that will handle this.

To get you started, when you start a new MVC project there is a class called "PropertiesMustMatchAttribute" that is applied at the class level. You could base it off that without much difficulty

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文