How do I select an option in razor? For every item it can be an other value.
@Html.DropDownListFor(model => model.items[i].Enum, ViewBag.Enum as SelectList, new { class="enum")})
ViewBag.Enum = new SelectList(new[]
{
new SelectListItem {Text="Auto", Value="Auto" },
new SelectListItem {Text="Man", Value="Man"},
new SelectListItem {Text="Not", Value="Not" },
}, "Text", "Value");