我正在开发 MVC4 和实体框架应用程序。我想填充 DropDownList,我想将类别列表绑定到 Dodropdown 列表
IRepository 代码
IList<Category> GetCategory();
存储库
public IList<Category> GetCategory()
{
return (from c in context.Categories
select c).ToList();
}
控制器
public IList<Category> GetCategory()
{
return icategoryRepository.GetCategory();
}
之后我卡在这里。如何将数据绑定到 Dropdownlist ?
我的查看代码在这里
<label for="ProductType">Product Type</label>
@Html.DropDownListFor(m => m.ProductType,new List<SelectListItem>)
我的控制器代码
public ActionResult AddProduct()
{
return View();
}