<small id='ztECv'></small><noframes id='ztECv'>

  1. <legend id='ztECv'><style id='ztECv'><dir id='ztECv'><q id='ztECv'></q></dir></style></legend>

      <bdo id='ztECv'></bdo><ul id='ztECv'></ul>
    <i id='ztECv'><tr id='ztECv'><dt id='ztECv'><q id='ztECv'><span id='ztECv'><b id='ztECv'><form id='ztECv'><ins id='ztECv'></ins><ul id='ztECv'></ul><sub id='ztECv'></sub></form><legend id='ztECv'></legend><bdo id='ztECv'><pre id='ztECv'><center id='ztECv'></center></pre></bdo></b><th id='ztECv'></th></span></q></dt></tr></i><div id='ztECv'><tfoot id='ztECv'></tfoot><dl id='ztECv'><fieldset id='ztECv'></fieldset></dl></div>

      <tfoot id='ztECv'></tfoot>

      将属性与 .net 中的代码生成属性相关联

      Associate attribute with code generated property in .net(将属性与 .net 中的代码生成属性相关联)
          <bdo id='zZtuo'></bdo><ul id='zZtuo'></ul>
          <i id='zZtuo'><tr id='zZtuo'><dt id='zZtuo'><q id='zZtuo'><span id='zZtuo'><b id='zZtuo'><form id='zZtuo'><ins id='zZtuo'></ins><ul id='zZtuo'></ul><sub id='zZtuo'></sub></form><legend id='zZtuo'></legend><bdo id='zZtuo'><pre id='zZtuo'><center id='zZtuo'></center></pre></bdo></b><th id='zZtuo'></th></span></q></dt></tr></i><div id='zZtuo'><tfoot id='zZtuo'></tfoot><dl id='zZtuo'><fieldset id='zZtuo'></fieldset></dl></div>
          <tfoot id='zZtuo'></tfoot>

              <tbody id='zZtuo'></tbody>
            <legend id='zZtuo'><style id='zZtuo'><dir id='zZtuo'><q id='zZtuo'></q></dir></style></legend>

              <small id='zZtuo'></small><noframes id='zZtuo'>

                本文介绍了将属性与 .net 中的代码生成属性相关联的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我希望在 .NET 中为公共属性设置属性,但是我无权访问显式属性本身,因为这是在另一个文件中生成的代码.

                I wish to set an attribute on a public property in .NET, however I do not have access to the explicit property itself, as this has been code generated in another file.

                我有这个字段:

                public virtual string Name { get; set; }
                

                我想设置这个:

                [ValidateNonEmpty("Name is required", ExecutionOrder = 1)]
                public virtual string Name { get; set; }
                

                我的课程被标记为部分,但你不能有部分属性.我以为我对 MetadataType 类有所了解,这是 Dynamic Data 和 DataAnnotations 的一个新功能,但可惜我觉得它只能与 Dynamic Data 一起使用,这是真的吗?

                My class is marked as partial, but you cannot have partial properties. I thought I was on to something with the MetadataType class which is a new feature of Dynamic Data and DataAnnotations, but alas I feel it can only be used with Dynamic Data, is this true?

                引用:http://blogs.oosterkamp.nl/blogs/jowen/archive/2008/10/16/metadatatype-attribute.aspxhttp:///blogs.msdn.com/davidebb/archive/2008/06/16/dynamic-data-and-the-associated-metadata-class.aspx

                有什么方法可以设置这个属性(甚至通过 web.config!)而不接触代码生成的类?

                Is there any way I can set this attributes (even through web.config!) without touching the code generated class?

                提前致谢,格雷厄姆

                推荐答案

                这是一个已知的麻烦;您根本无法将元数据添加到生成的成员中.

                This is a known nuisance; you simply can't add metadata to the generated members.

                这里有 6 个选项(按努力增加的顺序):

                There are 6 options here (in order of increasing effort):

                • 如果您拥有该属性,则可以针对类声明它,例如:[ValidateNonEmpty("Name", "Name is required", ExecutionOrder = 1)] - 然后添加部分类定义的多个属性
                • 使用虚拟/接口/等方法来查询这个,而不是通过属性来查询
                • 子类化生成的类型;覆盖或重新声明成员,添加元数据(真的很乱)
                • 使用自定义 TypeDescriptionProvider 来提供动态元数据(大量工作) - 假设消费者尊重 TypeDescriptor;大多数与绑定相关的消费者都会这样做,但例如,Expression(被许多 LINQ 提供程序使用)不会
                • 更改代码生成器/编写自己的代码
                • 尝试扩展 PostSharp 之类的东西来完成这项工作(我还没有找到方法,但我很想听听你是否找到方法!)
                • if you own the attribute, make it possible to declare it against the class, for example: [ValidateNonEmpty("Name", "Name is required", ExecutionOrder = 1)] - then add multiple attributes to the partial class definition
                • use a virtual / interface / etc method to query this, rather than via attributes
                • sublass the generated type; override or re-declare the member, adding the metadata (really messy)
                • use a custom TypeDescriptionProvider to provide dynamic metadata (lots and lots of work) - assuming that the consumer respects TypeDescriptor; most binding-related consumers do, but for example, Expression (used by many LINQ providers) doesn't
                • change the code-generator / write your own
                • try to extend something like PostSharp to do the work (I haven't found a way to do this, but I've love to hear if you find a way!)

                我通常会成功使用第一个选项,除非它是系统定义的属性([DisplayName] 等).如果 [ValidateNonEmpty] 是由动态数据定义的,那么您可能无法做到这一点.

                I usually have success with the first option, unless it is a system-defined attribute ([DisplayName], etc). If [ValidateNonEmpty] is defined by dynamic data, then you might not be able to do this.

                这篇关于将属性与 .net 中的代码生成属性相关联的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Performance overhead of using attributes in .NET(在 .NET 中使用属性的性能开销)
                Accessing attribute info from DTE(从 DTE 访问属性信息)
                c# Hide a property in datagridview with datasource(c#使用数据源隐藏datagridview中的属性)
                Extract Display name and description Attribute from within a HTML helper(从 HTML 帮助器中提取显示名称和描述属性)
                How can I force the PropertyGrid to show a custom dialog for a specific property?(如何强制 PropertyGrid 显示特定属性的自定义对话框?)
                C# Attributes and their uses(C# 属性及其用途)

                <legend id='hdbuz'><style id='hdbuz'><dir id='hdbuz'><q id='hdbuz'></q></dir></style></legend>
                • <i id='hdbuz'><tr id='hdbuz'><dt id='hdbuz'><q id='hdbuz'><span id='hdbuz'><b id='hdbuz'><form id='hdbuz'><ins id='hdbuz'></ins><ul id='hdbuz'></ul><sub id='hdbuz'></sub></form><legend id='hdbuz'></legend><bdo id='hdbuz'><pre id='hdbuz'><center id='hdbuz'></center></pre></bdo></b><th id='hdbuz'></th></span></q></dt></tr></i><div id='hdbuz'><tfoot id='hdbuz'></tfoot><dl id='hdbuz'><fieldset id='hdbuz'></fieldset></dl></div>

                  <small id='hdbuz'></small><noframes id='hdbuz'>

                  1. <tfoot id='hdbuz'></tfoot>
                      <bdo id='hdbuz'></bdo><ul id='hdbuz'></ul>
                            <tbody id='hdbuz'></tbody>