asp.net-mvc – 使用MVC 4和实体框架填充DropDownList

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 使用MVC 4和实体框架填充DropDownList前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发MVC4&实体框架Application.I想要填充DropDownList,我想将Category List绑定到Dodropdown列表

IRepository Code

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();
    }

解决方法

如何使用ViewBag?

视图

<label for="ProductType">Product Type</label>
   @Html.DropDownListFor(m => m.ProductType,ViewBag.ListOfCategories)

调节器

public ActionResult AddProduct()
{
    ViewBag.ListOfCategories = GetCategory();
    return View();
}
原文链接:https://www.f2er.com/aspnet/251387.html

猜你在找的asp.Net相关文章