使用c#的类的“显示名称”数据注释

时间:2013-07-24 05:35:51

标签: c# reflection data-annotations

我在属性中设置了[Display(Name ="name")]的课程,并且在课程顶部设置了[Table("tableName"]

现在我正在使用反射来获取这个类的一些信息,我想知道我是否能以某种方式向类本身添加[Display(Name ="name")]

这将是

[Table("MyObjectTable")]
[Display(Name ="My Class Name")]     <-------------- New Annotation
public class MyObject
{
   [Required]
   public int Id { get; set; }

   [Display(Name="My Property Name")]
   public string PropertyName{ get; set; }
}

4 个答案:

答案 0 :(得分:8)

根据那篇文章,我引用了一个完整的例子

声明自定义属性

[System.AttributeUsage(System.AttributeTargets.Class)]
public class Display : System.Attribute
{
    private string _name;

    public Display(string name)
    {
        _name = name;        
    }

    public string GetName()
    {
        return _name;
    }
}

使用示例

[Display("My Class Name")]
public class MyClass
{
    // ...
}

读取属性

的示例
public static string GetDisplayAttributeValue()
{
    System.Attribute[] attrs = 
            System.Attribute.GetCustomAttributes(typeof(MyClass)); 

    foreach (System.Attribute attr in attrs)
    {
        var displayAttribute as Display;
        if (displayAttribute == null)
            continue;
        return displayAttribute.GetName();   
    }

    // throw not found exception or just return string.Empty
}

答案 1 :(得分:3)

.Net中已有一个属性:http://msdn.microsoft.com/en-us/library/system.componentmodel.displaynameattribute.aspx。是的,你可以在它们:属性和类上使用它(在语法部分检查AttributeUsageAttribute

答案 2 :(得分:2)

只需像这样写一个static 功能

public static string GetDisplayName<TModel, TProperty>(this TModel model, Expression<Func<TModel, TProperty>> expression)
{
    return ModelMetadata.FromLambdaExpression<TModel, TProperty>(expression, new ViewDataDictionary<TModel>(model)).DisplayName;
}

使用,就像这样:

string name = GetDisplayName(Model, m => m.Prop);

答案 3 :(得分:0)

基于@ amirhossein-mehrvarzi我使用了功能

public static string GetDisplayName(this object model, string expression)
{
    return ModelMetadata.FromStringExpression(expression, new ViewDataDictionary(model)).DisplayName ?? expression;
}

在此示例中使用

var test = new MyObject();

foreach (var item in test.GetType().GetProperties())
{
        var temp = test.GetDisplayName(item.Name)
}

这么多选择:)