Eu tenho o seguinte modelo de visão
public class ProjectVM
{
....
[Display(Name = "Category")]
[Required(ErrorMessage = "Please select a category")]
public int CategoryID { get; set; }
public IEnumerable<SelectListItem> CategoryList { get; set; }
....
}
e o seguinte método de controlador para criar um novo projeto e atribuir um 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
}
e na vista
@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" />
}
A visualização é exibida corretamente, mas ao enviar o formulário, recebo a seguinte mensagem de erro
InvalidOperationException: O item ViewData que possui a chave 'CategoryID' é do tipo 'System.Int32', mas deve ser do tipo 'IEnumerable <SelectListItem>'.
O mesmo erro ocorre usando o @Html.DropDownList()
método, e se eu passar na SelectList usando um ViewBag
ou ViewData
.