简体   繁体   English

使用实体框架在mvc中返回部分视图时从数据库填充下拉列表

[英]populating dropdown from database while returning partial view in mvc using entity framework

heloo m using entity framework in mvc5 i want to populate dropdown list from database in users View by picking the data from suppliers model and m also returning a partialView instead of simple View. 我在mvc5中使用实体框架,我想通过从供应商模型中选择数据来填充用户View中数据库的下拉列表,并且还返回PartialView而不是简单View。 let me share my codes here. 让我在这里分享我的代码。

this is Supplier Model Class. 这是供应商模型类。

[MetadataType(typeof(MetadataForSupplier))]
public partial class Supplier
{
}

public class MetadataForSupplier
{
    public int SupplierId { get; set; }
    public string Name { get; set; }
    public string ContactPerson { get; set; }
    public string Address { get; set; }
}

this is usersControler Create Method i want to populate dropdown in create View 这是usersControler创建方法,我想在创建视图中填充下拉列表

    // GET: /Frames/Create
    public ActionResult Create()
    {
        return PartialView("_Create");
    }

    // POST: /Frames/Create
    // To protect from overposting attacks, please enable the specific properties you want to bind to, for 
    // more details see http://go.microsoft.com/fwlink/?LinkId=317598.
    [HttpPost]
    [ValidateAntiForgeryToken]
    public async Task<ActionResult> Create([Bind(Include="FrameId,Name,FrameCode,FrameFor,Brand,Material,Color,FrameType,FrameShape,Bridge,LensWidth,FrameWidth,TempleLength,LensHeight,FrameWeight,Quantity,PurchaseRate,SaleRate,Supplier,Discription,Status,CreatedOn")] Frame frame)
    {

        if (ModelState.IsValid)
        {
            db.Frames.Add(frame);
            await db.SaveChangesAsync();
            return Json(new { success = true });
        }

        //IEnumerable<SelectListItem> SuppliersList = db.Suppliers.Select(c => new SelectListItem
        //{
        //    Value = c.Name,
        //    Text = c.Name

        //});

        ViewData["SupplierList"] = new SelectList(db.Suppliers, "Name", "Name");

        return PartialView("_Create", frame);
    }

and here is _Create.cshtml partialView Code 这是_Create.cshtml部分查看代码

<div class="col-md-3">
                    @Html.LabelFor(model => model.Supplier)
                    @Html.DropDownList("Suppliers", (SelectList)ViewData["SupplierList"))
                    @Html.EditorFor(model => model.Supplier, new { htmlAttributes = new { @class = "form-control ", style = "width: 200px", @placeholder = "Supplier" } })
                    @Html.ValidationMessageFor(model => model.Supplier)
                </div>

You can use a different overload of Html.DropDownList more conveniently: 您可以更方便地使用Html.DropDownList的其他重载:

Change: 更改:

ViewData["SupplierList"] = new SelectList(db.Suppliers, "Name", "Name");

to: 至:

ViewBag.SuppliersList = new SelectList(db.Suppliers, "Name", "Name");

in your action. 在你的行动中。 Then in your view: 然后在您看来:

@Html.DropDownList("SuppliersList")

By default, setting this initial string parameter will cause the helper method to search the ViewBag for a SelectList with the "SuppliersList" identifier. 默认情况下,设置此初始字符串参数将使helper方法在ViewBag中搜索带有“ SuppliersList”标识符的SelectList。

Edit: Since you've requested css changes using the Html helper, we can do it this way. 编辑:由于您已请求使用HTML帮助器进行CSS更改,因此我们可以采用这种方式。

ViewBag.SuppliersList = new SelectList(db.Suppliers, "SupplierId", "Name");

Then in the view: 然后在视图中:

@Html.DropDownList("SupplierId", ViewBag.SuppliersList as SelectList, new { @class = "someCssClass" })

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM