如何从属性中获取数据注释属性
我正在尝试使用类信息及其属性以及支持的数据注释属性来构建网格。
类和注释可能在不同的类中定义,例如(Product 和 ProductMetaData 类),并与元数据类型属性绑定在一起(也可能在单个类中定义)。
这会使 DataAnnotation 属性在基类本身中可用,还是有其他方法来获取 dataannotation 属性?
您可以链接的任何示例代码也会非常有帮助。
谢谢。
I am trying to build a grid, using class info and its properties along with the supported dataannotion attributes.
Class and annotations might be defined in different classes, like (Product and ProductMetaData classes) and tied togather with the metadatatype attribute, (might also be defined in a single class).
Would this make the DataAnnotaion attributes available in the base class itself or are there other means of getting the dataannotation attributes?
Any sample code that you can link, would also be very helpful.
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要从类中读取模型元数据,您通常应该创建 DataAnnotationsModelMetadataProvider(在 System.ComponentModel 中)。
该类生成一个 ModelMetadata 对象,它是该类元数据的摘要。
这种方法的主要优点之一是它自动尊重伙伴元数据类上的元数据。
通过使用 ModelMetadata,您还可以在特定元数据属性及其含义的解释之间引入一个很好的抽象。例如,如果您创建一些自己的元数据属性,或者您想要强制执行其他元数据源(例如,将所有以 Date 结尾的属性视为应用了 DataType.Date,即使它们没有应用),那么您可以创建自己的元数据属性DataAnnotationsModelMetadataProvider,添加这些额外的规则,所有其他代码都不会改变,因为它从 ModelMetadata 类读取 - 而不是直接从特定属性的知识读取。
To read model metadata from a class you should generally create an instance of the DataAnnotationsModelMetadataProvider (in System.ComponentModel).
This class generates a ModelMetadata object which is a summary of the meta data on the class.
One of the main advantages of this approach is that it automatically respects metadata on buddy metadata classes.
By using ModelMetadata you also introduce a nice abstraction between the specific metadata attributes and the interpretation of their meaning. For example if you create some of your own metadata attributes, or you want to enforce other sources of metadata (e.g. treat all properties ending in Date as if they had DataType.Date applied even if they don't) then you can create your own DataAnnotationsModelMetadataProvider, add these extra rules, and all your other code works unchanged because it reads from a ModelMetadata class - not directly from knowledge of specific attributes.