gpt4 book ai didi

c# - 无法获取 DisplayAttribute 名称

转载 作者:行者123 更新时间:2023-11-30 18:05:13 24 4
gpt4 key购买 nike

我有一个从 EF4 生成的部分类,我分配了一个 MetadataType 以便在 ASP.NET MVC3 上显示控件的名称,它按预期工作。

我想使用分配给每个属性的相同 DisplayAttribute 来检索属性的显示 Name 值以用于其他目的。我的类(class)是这样的:

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,因此它返回空字符串(第 3 个问题)或属性名称(第 1 个问题);第二个问题为了发现属性而稍微改变了,但结果也是一个空字符串。

你能帮我解决这个问题吗?非常感谢!

编辑:

这是我用来检索属性值的 2 种方法的代码(两者都单独工作)。两者非常相似:第一个使用带有属性名称的字符串,另一个使用 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;
}

最佳答案

您是否考虑过将您的显示名称放入资源中?它比所有这些反射魔术更容易重用。

你可以简单地做:

[Display(Name = "Property1Name", ResourceType = typeof(Resources), Order = 1)]
public Boolean Property1;

并使用 Property1Name 键和“Property 1 Description”值将 Resources.resx 文件添加到您的项目。当然,您可能必须将默认资源访问权限从 internal 设置为 public

稍后,在其他地方您需要这些字符串只需调用:

string displayName = Domain.Resources.Property1Name;

关于c# - 无法获取 DisplayAttribute 名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5802228/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com