首先,我是 .NET MVC 的新手,尽管我之前使用过一般的 MVC 理念。我正在使用 .NET MVC4 和 CodeFirst,使用实体框架。
我正在尝试向“创建”视图添加一个简单的下拉列表,以允许用户选择与另一个模型相关的外键。
以下是相关代码:
从视图(PropertyProgram/Create):
<div class="editor-field">
@Html.DropDownListFor(model => model.Program.ID, new SelectList(ViewBag.Programs, "Id","Name"));
@Html.ValidationMessageFor(model => model.Program.ID);
</div>
从控制器(PropertyProgramController):
public ActionResult Create()
{
ViewBag.Programs = db.Programs;
return View();
}
来自模型(PropertyProgram):
public class PropertyProgram
{
public int Id { get; set; }
public virtual Program Program { get; set; }
}
视图正常工作,下拉列表中显示了正确的数据,但由于某种原因,在发布后,在数据库的 Program 表中创建了一个新行,其中除 ID 之外的所有内容均为空字段。对于创建的 PropertyProgram 行,预期的行为是将下拉列表中选择的 Program ID 放入数据库的 Program_ID 列中。知道为什么这不符合预期吗?