我想要做的是将现有的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”只有constructors
with 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
从我的示例模型中得到这个。
任何人都有一些想法如何使它工作?