0

我有以下视图模型:

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>

问题是我列出的项目不在正确的文化中。我有“Daily”或“Revision”,而我应该有“Journalier”或“Dagelijkse”或“Révision”或“Revisie”。

我怎样才能让我的 SiteType 处于正确的文化中(由我的枚举提供)?

谢谢。

4

1 回答 1

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())

我希望它有帮助

于 2012-04-21T17:33:29.123 回答