How can I access the DisplayName data annotation v

2020-02-01 14:54发布

public static string ProductHelper(this Product p) {
    // Need to get the DisplayName value for p.Name property
}

EDIT:

[MetadataType(typeof(ProductMetadata))]
public partial class Product {
    public class ProductMetadata {
        [DisplayName("Product name")]
        public object Name { get; set; }
    }
}

1条回答
做个烂人
2楼-- · 2020-02-01 15:29
Type type = typeof(Product);
DisplayNameAttribute att = (DisplayNameAttribute)type.GetProperty("Name").GetCustomAttributes(typeof(DisplayNameAttribute), true).SingleOrDefault();

This assumes the attribute always exists. Modify for the case when it may not.

edit:
To get the value string x = att.DisplayName;

If Product is a base class use Type type = p.GetType(); instead.

查看更多
登录 后发表回答