Hopefully someone can point out what I'm doing wrong here. I'm trying to retrieve several objects from a the DbContext
and convert them into SelectListItem
s as I retrieve them. I've read several posts about this and they seem to be doing the same thing I am, but when I run this code it's always just a SelectList of SelectListItems whose names are "System.Web.MVC.SelectListItem" and Id is null. Here's the code:
var wtf = db.Departments.ToList().Select(m => new SelectListItem
{
Text = m.Name,
Value = m.Id.ToString()
});
SelectList dafuq = new SelectList(wtf);
ViewBag.Departments = dafuq;
return View(model);
No exceptions are thrown or anything.
If I just call
var omg = db.Departments.ToList();
before that it returns the objects as expected.
Thanks!
Try this instead: