I have issue with correct bind SelectListItem with a view.
ItemController.cs
 public ActionResult SelectCondition()
        {
            List<SelectListItem> items = new List<SelectListItem>();
            items.Add(new SelectListItem { Text = "New", Value = "0", Selected=true });
            items.Add(new SelectListItem { Text = "Old", Value = "1" });
            var model = new Item
            {
                ItemCondition = items
            };
            return View();
        }
Create.cshtml
@Html.DropDownList("SelectCondition", (IEnumerable<SelectListItem>)Model.ItemCondition)
Item.cs
public IEnumerable<SelectListItem> ItemCondition { get; set; }
Now I have NullReferenceException and underlined this line in Create.cshtml
 
    