5
好了,所以我想從我的對象列表 這裏做一個DropDownList
對象MVC是我越來越對象的方法的DropDownList從
public List<Category> GetCategoriesList()
{
BaseShopEntities context = new BaseShopEntities();
List<Category> uniqCategories = (from c in context.Category
select c).Distinct().ToList<Category>();
return uniqCategories;
}
我試圖把它放進ViewBag
這樣的:
ViewBag.Categories = proxy.GetCategoriesList().ToList();
,如果im只取的categorys的名字和它解析字符串是沒有問題的,但我需要ID太
我想要得到這樣的數據但不知道如何
@Html.DropDownList("CategoryID", new SelectList(ViewBag.Categories.Name));
節省了我的時間。像魅力一樣工作 –