如何在业务层(ASP.NET)调用DataAnnotations?
我想在我的传输对象上使用 DataAnnotations。但是我如何在业务层调用它们来验证输入呢?
这是通过某种方法调用还是反射?
我不使用 ASP.NET,而是使用标准 ASP.NET,并且想在业务层调用数据注释。
I would like to use the DataAnnotations on my transfer objects. However how do I call them in the business layer to verify the input?
Is this by some method call or reflection?
I do not use ASP.NET but standard ASP.NET and would like to call the data annotations in the business layer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在以下链接中寻找 Validator 类。它有多种方法,本质上为您提供一个布尔值,让您知道某些内容是否有效以及相关的错误消息。
不过仅限.net 4 和 silverlight。
http://msdn.microsoft.com/en-us/library/dd382181.aspx
I think you are looking for the Validator class in the following link. It has a variety of methods which essentially give you a boolean letting you know if something is valid and the associated error messages.
.net 4 and silverlight only though.
http://msdn.microsoft.com/en-us/library/dd382181.aspx