在页面上显示ForeignKey信息

时间:2013-10-04 18:06:53

标签: c# asp.net-mvc entity-framework razor

我一直坚持这个问题一段时间了。 我试图从另一个表中获取和显示来自外表或主表的信息。

例如,我有一个人和宠物桌。

public class Person
{
    public int id { get; set; }
    // rest of the fields here
}

public class Pet
{
    [DisplayName("Belongs to:")]
    public int person_id { get; set; }
    // Rest of the fields here
}

person_id是外键。

这是我的观点

 @model SpamValley.Models.Pet

    @{
        ViewBag.Title = "Create";
    }

    <h2>Create</h2>

    @using (Html.BeginForm()) {
        @Html.ValidationSummary(true)

        <fieldset>
            <legend>Pet</legend>

            <div class="editor-label">
                @Html.LabelFor(model => model.pet_name)
            </div>
            <div class="editor-field">
                @Html.EditorFor(model => model.pet_name)
                @Html.ValidationMessageFor(model => model.pet_name)
            </div>

            <div class="editor-label">
                @Html.LabelFor(model => model.pet_type)
            </div>
            <div class="editor-field">
                @Html.EditorFor(model => model.pet_type)
                @Html.ValidationMessageFor(model => model.pet_type)
            </div>

            <div class="editor-label">
                @Html.LabelFor(model => model.person_id, "Person")
            </div>
            <div class="editor-field">
            @if (Model == null || Model.person_id == 0)
            {
                Html.DropDownList("person_id", "Select the person this pet belongs to");
            }
            else
            {
                @Html.DisplayFor(M => M.person_id);
            }
            @Html.ValidationMessageFor(model => model.person_id)
            </div>

            <p>
                <input type="submit" value="Create" />
            </p>
        </fieldset>

}

控制器:

[HttpGet]
[DisplayName("Create")]
public ActionResult Create() { return Create_Get(0); }

public ActionResult Create_Get(int p_id)
{
    if (p_id == 0)
    {
        ViewBag.person_id = new SelectList(db.People, "id", "first_name");
        return View();
    }
    else
    {
        // Person Ps = db.People.ToList().Single(Per => Per.id == p_id);
        // ViewBag.person_id = Ps.first_name + " " + Ps.last_name;

        Pet P = new Pet { id = p_id };
        return View(P);
    }
}

现在我知道上面的代码有些问题,但我更担心如何显示其他表中的信息。例如:我想在Pets.Create View上显示此人的名字。我还想在Person.Index View上显示Pets.Name。

我可以在SQL数据库上轻松地做到这一点,但我对mvc逻辑有点困惑。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

首先,将一个集合属性添加到Person以容纳该人的所有宠物,并将属性添加到Pet以保留该宠物的所有者。

public class Person
{
    public int id { get; set; }
    // rest of the fields here

    public virtual ICollection<Pet> Pets { get; set; }
}

public class Pet
{
    [DisplayName("Belongs to:")]
    public int person_id { get; set; }
    // Rest of the fields here

    public virtual Person Owner { get; set; }
}

其次,您可能需要使用Entity Framework's fluent API进行一些小配置。

第三,编辑视图以利用新属性。例如,要显示宠物主人的姓名:

@Html.DisplayFor(model => model.Owner.Name)