我有一个从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;
}
}
我已经看过这3篇文章,并尝试了所提出的解决方案:
但是没有一个可以检索属性Name
值;找不到该属性,因此它是null
,因此它返回一个空字符串(第三个问题)或属性名称(第一个问题);第二个问题是为了发现属性而略微改变,但结果也是一个空字符串。
你能帮帮我吗?非常感谢!
修改
这里是我用来检索属性值的两种方法的代码(两者都单独工作)。两者都非常相似:第一个使用带有属性名称的字符串,另一个使用lamba表达式。
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;
}
答案 0 :(得分:1)
您是否考虑过将显示名称放入资源?它比所有这些反射魔法更容易重用。
您可以这样做:
[Display(Name = "Property1Name", ResourceType = typeof(Resources), Order = 1)]
public Boolean Property1;
使用Resources.resx
键和“Property 1 Description”值将Property1Name
文件添加到项目中。当然,您可能必须设置从internal
到public
的默认资源访问权限。
稍后,在其他地方你需要这些字符串只需调用:
string displayName = Domain.Resources.Property1Name;