如何在CRUD功能中映射复合键

VTS*_*VTS 6 composite-key entity-framework-5 asp.net-mvc-5

我需要根据两个键(comp和part)进行映射.

@foreach (var item in Model) {
        <tr>
            <td>
                @Html.DisplayFor(modelItem => item.comp)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.part)
            </td>
             ...........................
            <td>
                @Html.ActionLink("Edit", "Edit", new { id=item.comp  }) |   
                @Html.ActionLink("Details", "Details", new { id = item.comp  }) |
                @Html.ActionLink("Delete", "Delete", new { id = item.comp  })
            </td>
        </tr>
    }
Run Code Online (Sandbox Code Playgroud)

如何在Index页面和控制器中使用复合键.

public ActionResult Edit(int? id)
    {
         DataView record = db.RecordDataView.Find(id);
            if (record == null)
            {
                return HttpNotFound();
            }
            return View(record);
        }
Run Code Online (Sandbox Code Playgroud)

如果有人有想法请回复.

Jel*_*sch 6

find方法,通过主键查找实体.如果您有复合主键,则按照模型中定义的顺序传递键值:

@Html.ActionLink("Edit", "Edit", new { comp = item.comp, part = item.part }) |   
@Html.ActionLink("Details", "Details", new { comp = item.comp, part = item.part }) |
@Html.ActionLink("Delete", "Delete", new { comp = item.comp, part = item.part })
Run Code Online (Sandbox Code Playgroud)

在控制器中,接收两个值:

public ActionResult Edit(int? comp, int? part)
{
    DataView record = db.RecordDataView.Find(comp, part);
    if (record == null)
    {
        return HttpNotFound();
    }
    return View(record);
}
Run Code Online (Sandbox Code Playgroud)