我是MVC的新手,我尝试使用ListBoxFor
,但我无法发布所有选定的项目,只发布了第一个项目。
我使用EF,这是我的代码。可能有什么不对?
public ActionResult Create()
{
ViewBag.vBSpecialtyTypeId = new MultiSelectList(
db.SpecialtyType, "SpecialtyTypeId", "SpecialtyTypeName");
return View();
}
[HttpPost]
public ActionResult Create(AddressSpecialtyDoctor addressspecialtydoctor)
{
db.AddressSpecialtyDoctor.Add(addressspecialtydoctor);
db.SaveChanges();
ViewBag.vBSpecialtyTypeId = new MultiSelectList(
db.SpecialtyType, "SpecialtyTypeId", "SpecialtyTypeName");
return View();
}
@Html.ListBoxFor(model =>
model.SpecialtyTypeId, (MultiSelectList)ViewBag.vBSpecialtyTypeId)