是否可以对 Linq2Sql 类实现业务层验证

发布于 2024-12-07 07:00:53 字数 179 浏览 1 评论 0原文

我知道通过使用验证属性对一般 n 层架构模型类中的模型类进行业务层验证。 现在,我只是想知道它是否适用于 Linq2Sql 类,就好像我手动向类或其成员添加一些属性,然后在 Dbml 文件中的下一次添加或删除时,它将重写设计器类,擦除我所做的更改。

请帮助我...

任何想法、示例代码或站点参考都将受到高度赞赏。

I am aware of the business layer validation for the model classes in general n-layered architectures model classes, by using validation attributes.
Now, I just i want to know if its applicable to Linq2Sql classes, as if I manually add some attributes to the class or its members, then on next addition or deletion in Dbml file, it will rewrite the designer classes, erasing my changes made.

Please help me...

Any idea , sample code or site references are highly appreciated.

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

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

发布评论

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

评论(1

欢你一世 2024-12-14 07:00:53

您可以编写一个分部类并对其进行注释

using System.ComponentModel.DataAnnotations;  
namespace MvcDA {
    [MetadataType(typeof(ProductMD))]
    public partial class Product {
        public class ProductMD {
            [StringLength(50),Required]
            public object Name { get; set; }
            [StringLength(15)]
            public object Color { get; set; }
            [Range(0, 9999)]
            public object Weight { get; set; }
          //  public object NoSuchProperty { get; set; }
        }
    }
}

使用 DataAnnotations 属性验证模型数据

You can write a partial class and annotate that

using System.ComponentModel.DataAnnotations;  
namespace MvcDA {
    [MetadataType(typeof(ProductMD))]
    public partial class Product {
        public class ProductMD {
            [StringLength(50),Required]
            public object Name { get; set; }
            [StringLength(15)]
            public object Color { get; set; }
            [Range(0, 9999)]
            public object Weight { get; set; }
          //  public object NoSuchProperty { get; set; }
        }
    }
}

Validate Model Data Using DataAnnotations Attributes

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