1

我想要做的是将现有的attributes从一个复制property到另一个。这是我现在的代码:

foreach (var prop in typeof(Example).GetProperties())
{
            FieldBuilder field = typeBuilder.DefineField("_" + prop.Name, prop.PropertyType, FieldAttributes.Private);

            PropertyBuilder propertyBuilder =
                typeBuilder.DefineProperty(prop.Name,
                                 PropertyAttributes.HasDefault,
                                 prop.PropertyType,
                                 null);

            object[] attributes = prop.GetCustomAttributes(true);
            foreach (var attr in attributes)
            {
                //Here I need to get value of constructor parameter passed in declaration of Example class
                ConstructorInfo attributeConstructorInfo = attr.GetType().GetConstructor(new Type[]{});
                CustomAttributeBuilder customAttributeBuilder = new CustomAttributeBuilder(attributeConstructorInfo,new Type[]{});
                propertyBuilder.SetCustomAttribute(customAttributeBuilder);
            }
}

它正在工作,但仅适用于attributes无参数constructor的。例如,“DataTypeAttribute”只有constructorswith parameter

现在我想知道是否有办法获得当前值attribute constructor

假设我有这个模型:

public class Example
{
    public virtual int Id { get; set; }
    [Required]
    [MaxLength(50)]
    [DataType(DataType.Text)]
    public virtual string Name { get; set; }
    [MaxLength(500)]
    public virtual string Desc { get; set; }
    public virtual string StartDt { get; set; }

    public Example()
    {

    }
}

现在我copy只能RequiredAttribute因为它有 parameterless constructor。我不能copy DataTypeAttribute。所以我想value DataType.Text从我的示例模型中得到这个。

任何人都有一些想法如何使它工作?

4

1 回答 1

4

代替GetCustomAttributes()返回构造属性的GetCustomAttributesData(). 它返回一个 集合CustomAttributeData,其中包含您需要的内容:用于创建属性的构造函数、其参数以及有关属性的命名参数的信息。

于 2013-07-11T17:59:45.080 回答