来自属性的C#自定义属性

时间:2012-01-20 22:12:27

标签: c# asp.net reflection custom-attributes

所以我有一个我想要循环的类的属性集合。 对于每个属性,我可能有自定义属性,所以我想循环这些属性。 在这种特殊情况下,我在City Class上有一个自定义属性

public class City
{   
    [ColumnName("OtroID")]
    public int CityID { get; set; }
    [Required(ErrorMessage = "Please Specify a City Name")]
    public string CityName { get; set; }
}

该属性定义为

[AttributeUsage(AttributeTargets.All)]
public class ColumnName : System.Attribute
{
    public readonly string ColumnMapName;
    public ColumnName(string _ColumnName)
    {
        this.ColumnMapName= _ColumnName;
    }
}

当我尝试遍历属性[工作正常]然后遍历属性时,它只是忽略属性的for循环而不返回任何内容。

foreach (PropertyInfo Property in PropCollection)
//Loop through the collection of properties
//This is important as this is how we match columns and Properties
{
    System.Attribute[] attrs = 
        System.Attribute.GetCustomAttributes(typeof(T));
    foreach (System.Attribute attr in attrs)
    {
        if (attr is ColumnName)
        {
            ColumnName a = (ColumnName)attr;
            var x = string.Format("{1} Maps to {0}", 
                Property.Name, a.ColumnMapName);
        }
    }
}

当我转到具有自定义属性的属性的即时窗口时,我可以

?Property.GetCustomAttributes(true)[0]

它将返回ColumnMapName: "OtroID"

我似乎无法通过编程方式将其用于工作

4 个答案:

答案 0 :(得分:8)

你想这样做我相信:

PropertyInfo[] propCollection = type.GetProperties();
foreach (PropertyInfo property in propCollection)
{
    foreach (var attribute in property.GetCustomAttributes(true))
    {
        if (attribute is ColumnName)
        {
        }
    }
}

答案 1 :(得分:2)

我得到此代码的最终结果是x的值为"OtroID Maps to CityID"

var props = typeof(City).GetProperties();
foreach (var prop in props)
{
    var attributes = Attribute.GetCustomAttributes(prop);
    foreach (var attribute in attributes)
    {
        if (attribute is ColumnName)
        {
            ColumnName a = (ColumnName)attribute;
            var x = string.Format("{1} Maps to {0}",prop.Name,a.ColumnMapName);
        }
    }
}

答案 2 :(得分:2)

根据作者的要求从原始问题的评论中重新发布

感兴趣的是什么是T in typeof(T)?

在即时窗口中,您调用Property.GetCustomAttribute(true)[0],但在foreach循环中,您在类型参数上调用GetCustomattributes。

这一行:

System.Attribute[] attrs = System.Attribute.GetCustomAttributes(typeof(T));

应该是这个

System.Attribute[] attrs = property.GetCustomAttributes(true);

致以最诚挚的问候,

答案 3 :(得分:1)

在内部外观中,您应该调查属性,而不是类型(T)。

使用intellisense并查看可以调用Property对象的方法。

Property.GetCustomAttributes(布尔)可能对您很重要。 这将返回一个数组,您可以在其上使用LINQ快速返回符合您要求的所有属性。