我有以下视图模型:
public class BudgetTypeSiteRowListViewModel
{
public virtual int BudgetTypeSiteID { get; set; }
public virtual string SiteName { get; set; }
public virtual BudgetTypeEnumViewModel SiteType { get; set; }
}
使用以下枚举:
public enum BudgetTypeEnumViewModel
{
[Display(Name = "BudgetTypeDaily", ResourceType = typeof (UserResource))] Daily = 1,
[Display(Name = "BudgetTypeRevision", ResourceType = typeof (UserResource))] Revision = 2
}
以下列出我的项目的视图:
@model IEnumerable<BudgetTypeSiteRowListViewModel>
<table>
@foreach (var item in Model)
{
<tr>
<td>@Html.DisplayFor(m => item.SiteName)</td>
<td>@Html.DisplayFor(m => item.SiteType)</td>
</tr>
}
</table>
问题是我列出的项目不在正确的文化中。我有'每日'或'修订',我应该有'Journalier'或'Dagelijkse'或'Révision'或'Revisie'。
如何在正确的文化中使用我的SiteType(从我的枚举中提供)?
感谢。
答案 0 :(得分:0)
您必须编写一个使用反射来获取属性的枚举类型的扩展方法
public static string DisplayAttribute<TEnum>(this TEnum enumValue) where TEnum : struct
{
//You can't use a type constraints on the special class Enum. So I use this workaround
if (!typeof(TEnum).IsEnum)
throw new ArgumentException("TEnum must be of type System.Enum");
Type type = typeof(TEnum);
MemberInfo[] memberInfo = type.GetMember(enumValue.ToString());
if (memberInfo != null && memberInfo.Length > 0)
{
object[] attrs = memberInfo[0].GetCustomAttributes(typeof(DisplayAttribute), false);
if (attrs != null && attrs.Length > 0)
return ((DisplayAttribute)attrs[0]).GetName();
}
return enumValue.ToString();
}
从视图中你会得到像这样的值
@Html.DisplayFor(m => item.SiteType.DisplayAttribute())
我希望它有所帮助