我有一个从EF4生成的部分类,我分配了一个MetadataType
以便在ASP上显示。. NET MVC3形式的控件的名称,它工作如预期。
我想使用分配给每个属性的相同DisplayAttribute
来检索用于另一个目的的属性显示的Name
值。我的类是这样的:
using Domain.Metadata;
namespace Domain
{
[MetadataType(typeof(ClassAMetada))]
public partial class ClassA
{}
}
namespace Domain.Metadata
{
public class ClassAMetada
{
[Display(Name = "Property 1 Description", Order = 1)]
public Boolean Property1;
[Display(Name = "Property 2 Description", Order = 2)]
public Boolean Property2;
}
}
我已经看了这三篇文章,并尝试了提出的解决方案:
- 如何通过反射获得属性的DisplayAttribute ?
- c#好友类/元数据和反射
- 以强类型方式获取属性的[DisplayName]属性
均不能检索到属性Name
值;没有找到属性,因此是null
,因此它返回一个空字符串(第三个问题)或属性名称(第一个问题);为了发现属性,对第二个问题进行了稍微修改,但结果也是一个空字符串。
你能帮我做这个吗?非常感谢!
编辑:下面是我用来检索属性值的两个方法的代码(两个方法都是单独工作的)。两者非常相似:第一个使用带有属性名称的字符串,另一个使用lambda表达式。
private static string GetDisplayName(Type dataType, string fieldName)
{
DisplayAttribute attr;
attr = (DisplayAttribute)dataType.GetProperty(fieldName).GetCustomAttributes(typeof(DisplayAttribute), true).SingleOrDefault();
if (attr == null)
{
MetadataTypeAttribute metadataType = (MetadataTypeAttribute)dataType.GetCustomAttributes(typeof(MetadataTypeAttribute), true).FirstOrDefault();
if (metadataType != null)
{
var property = metadataType.MetadataClassType.GetProperty(fieldName);
if (property != null)
{
attr = (DisplayAttribute)property.GetCustomAttributes(typeof(DisplayAttribute), true).SingleOrDefault();
}
}
}
return (attr != null) ? attr.Name : String.Empty;
}
private static string GetPropertyName<T>(Expression<Func<T>> expression)
{
MemberExpression propertyExpression = (MemberExpression)expression.Body;
MemberInfo propertyMember = propertyExpression.Member;
Object[] displayAttributes = propertyMember.GetCustomAttributes(typeof(DisplayAttribute), true);
if (displayAttributes != null && displayAttributes.Length == 1)
return ((DisplayAttribute)displayAttributes[0]).Name;
return propertyMember.Name;
}
您考虑过将显示名称放入资源中吗?它比所有这些反射魔法更容易重用。
你可以简单地做:
[Display(Name = "Property1Name", ResourceType = typeof(Resources), Order = 1)]
public Boolean Property1;
并添加Resources.resx
文件到您的项目与Property1Name
键和"属性1描述"值。当然,您可能必须将默认资源访问权限从internal
设置为public
。
稍后,在其他需要这些字符串的地方只需调用:
string displayName = Domain.Resources.Property1Name;