我要做的是将现有的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);
}
}
它只适用于具有无参数constructor
的attributes
。例如,"DataTypeAttribute"只有constructors
和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
,因为它有无参数的constructor
。我无法copy
DataTypeAttribute
。所以我想从我的示例模型中得到这个value
DataType.Text
。
有人知道如何让它发挥作用吗?
使用GetCustomAttributesData()
代替返回构造属性的GetCustomAttributes()
。它返回一个CustomAttributeData
的集合,其中正好包含您所需要的内容:用于创建属性的构造函数、其参数以及有关该属性的命名参数的信息。