Mam następujący model widoku
public class ProjectVM
{
....
[Display(Name = "Category")]
[Required(ErrorMessage = "Please select a category")]
public int CategoryID { get; set; }
public IEnumerable<SelectListItem> CategoryList { get; set; }
....
}
i następującą metodę kontrolera, aby utworzyć nowy projekt i przypisać plik Category
public ActionResult Create()
{
ProjectVM model = new ProjectVM
{
CategoryList = new SelectList(db.Categories, "ID", "Name")
}
return View(model);
}
public ActionResult Create(ProjectVM model)
{
if (!ModelState.IsValid)
{
return View(model);
}
// Save and redirect
}
i w widoku
@model ProjectVM
....
@using (Html.BeginForm())
{
....
@Html.LabelFor(m => m.CategoryID)
@Html.DropDownListFor(m => m.CategoryID, Model.CategoryList, "-Please select-")
@Html.ValidationMessageFor(m => m.CategoryID)
....
<input type="submit" value="Create" />
}
Widok wyświetla się poprawnie, ale podczas przesyłania formularza pojawia się następujący komunikat o błędzie
InvalidOperationException: Element ViewData, który ma klucz „CategoryID”, jest typu „System.Int32”, ale musi być typu „IEnumerable <SelectListItem>”.
Ten sam błąd występuje przy użyciu @Html.DropDownList()
metody i jeśli przekażę SelectList za pomocą ViewBag
lub ViewData
.