I'm developing MVC4 & Entity Framework Application.I wanted to populate DropDownList,I wanted to bind Category List to Dodropdown list
IRepository Code
IList<Category> GetCategory();
Repository
public IList<Category> GetCategory()
{
return (from c in context.Categories
select c).ToList();
}
Controller
public IList<Category> GetCategory()
{
return icategoryRepository.GetCategory();
}
After that I stucked here.How do i bind data to Dropdownlist ?
My View Code here
<label for="ProductType">Product Type</label>
@Html.DropDownListFor(m => m.ProductType,new List<SelectListItem>)
My Controller Code
public ActionResult AddProduct()
{
return View();
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…