使用继承时的MVC / Razor DisplayAttribute

时间:2016-02-09 22:17:00

标签: c# asp.net-mvc razor

我正在设置一堆用于维护参考表的Razor页面。数据上下文中的基本结构是:

public class RefTableBase {
    public int Id {get;set;}
    public string Value {get;set;}
}

public class UserType: RefTableBase {}

public class ReferenceType: RefTableBase {}

支架式Razor页面在那里正常工作。但是,当我有一个调用derrived表的类时,页面不会显示我期望的内容。

public class SomethingImportant {
    public int Id {get;set;}
    public string Name {get;set;}

    public int UserTypeId {get;set;}
    public virtual UserType UserType {get;set;}

    public int ReferenceTypeId {get;set;}
    public virtual ReferenceType ReferenceType {get;set;}
}

当index.cshtml页面被搭建时,表格标题如下所示:

@model IEnumerable<Models.SomethingImportant>

<table class="table">
    <tr>
        <th>@Html.DisplayNameFor(model => model.Id)</th>
        <th>@Html.DisplayNameFor(model => model.Name)</th>
        <th>@Html.DisplayNameFor(model => model.UserType.Value)</th>
        <th>@Html.DisplayNameFor(model => model.ReferenceType.Value)</th>

但是当页面实际在浏览器中呈现时,列标题会显示

Id    Name    Value    Value

当我想要的是:

Id    Name    User Type     Reference Type

我已尝试在类中的成员上使用DisplayAttribute,但它不起作用。

public class SomethingImportant {
    // ...........
    [Display(Name="User Type")]
    public int UserTypeId {get;set;}
    public virtual UserType UserType {get;set;}
    // ...........
}

除了跳过继承并实际为派生类中的每个类设置DisplayAttribute外,有什么办法可以让它显示我想要的内容吗?

1 个答案:

答案 0 :(得分:2)

您可以简单地将Display属性放在相关属性上:

public class SomethingImportant {
    public int Id {get;set;}
    public string Name {get;set;}

    public int UserTypeId {get;set;}
    [Display(Name="User Type")]//here
    public virtual UserType UserType {get;set;}

    public int ReferenceTypeId {get;set;}
    [Display(Name="Reference Type")]//and here
    public virtual ReferenceType ReferenceType {get;set;}
}

并删除视图上的.Value

<th>@Html.DisplayNameFor(model => model.Id)</th>
<th>@Html.DisplayNameFor(model => model.Name)</th>
<th>@Html.DisplayNameFor(model => model.UserType)</th>
<th>@Html.DisplayNameFor(model => model.ReferenceType)</th>

如果您需要.Value并且它是该类的属性,则可以将Display属性改为这些属性。