是否可以对 Linq2Sql 类实现业务层验证
我知道通过使用验证属性对一般 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以编写一个分部类并对其进行注释
使用 DataAnnotations 属性验证模型数据
You can write a partial class and annotate that
Validate Model Data Using DataAnnotations Attributes