Aşağıdaki görünüm modeline sahibim
public class ProjectVM
{
....
[Display(Name = "Category")]
[Required(ErrorMessage = "Please select a category")]
public int CategoryID { get; set; }
public IEnumerable<SelectListItem> CategoryList { get; set; }
....
}
ve yeni bir Proje oluşturmak ve bir 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
}
ve görünümde
@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" />
}
Görünüm düzgün görüntüleniyor ancak formu gönderirken aşağıdaki hata mesajını alıyorum
InvalidOperationException: 'CategoryID' anahtarına sahip ViewData öğesi 'System.Int32' türünde ancak 'IEnumerable <SelectListItem>' türünde olmalıdır.
Aynı hata @Html.DropDownList()
yöntemi kullanırken ve SelectList'i a ViewBag
veya ViewData
.