2

Kendo UI を使用した MVC4、Entity Framework データベースの最初のプロジェクトを取得しました。

グリッドに表示しているモデルは次のようになります。

public partial class RuleEntry
{
    public RuleEntry()
    {
        this.RuleEntriesCases = new HashSet<RuleEntriesCas>();
    }
    [Key]
    public int ID { get; set; }
    public string Country { get; set; }
    public Nullable<int> Family { get; set; }
    public Nullable<int> IP { get; set; }
    public string RuleKey { get; set; }
    public Nullable<int> Status { get; set; }
    public string Title { get; set; }

    public virtual Country Country1 { get; set; }
    public virtual Family Family1 { get; set; }
    public virtual IP IP1 { get; set; }
    public virtual RuleStatus RuleStatus { get; set; }
    public virtual ICollection<RuleEntriesCas> RuleEntriesCases { get; set; }
}

属性国は「SE」である可能性があり、「スウェーデン」という名前を含むテーブル「国」への外部キーです。国モデルは次のようになります。

public partial class Country
{
    public Country()
    {
        this.RuleEntries = new HashSet<RuleEntry>();
    }
    [Key]
    public string Code { get; set; }
    public string Name { get; set; }

    public virtual ICollection<RuleEntry> RuleEntries { get; set; }


}

すべての RuleEntry データを含むグリッドが必要ですが、対応する外部キー名があり、現時点ではキーのみが表示されます。私のグリッドコードは次のようなものです:

@(Html.Kendo().Grid(Model)    
.Name("Grid")
.Columns(columns =>
{
    columns.Bound(p => p.Country);
    columns.Bound(p => p.Family);
    columns.Bound(p => p.IP);
    columns.Bound(p => p.RuleKey);
    columns.Bound(p => p.Status);
    columns.Bound(p => p.Title);

})
.Groupable()
.Sortable()
.Scrollable(s => s.Height("auto"))
.Filterable()
.ColumnMenu())

どうすればいいのですか?モデル、コントローラー、またはビューで?

ありがとう

4

1 に答える 1

2

RuleEntry クラスで、次のように Country1 の ForeignKey 属性を追加します。

[ForeignKey("Country")]
public virtual Country Country1 { get; set; }

グリッドで、使用しますcolumns.Bound(p => p.Country1.Name);

于 2013-04-08T09:51:18.270 に答える