59

我将如何生成一个选择列表,其中文本字段由两个或多个文本列组成,例如:我的数据库中有一个描述和速率字段,我想将它们组合起来显示:

Large--£200
Medium--£150
Small--£100

控制器代码为:

 var stands = db.Stands.Where(s => s.ExhibitorID == null).ToList();
 ViewBag.StandID = new SelectList(stands,"StandID", "Description" + "-- £" + "Rate");

...我的观点是(目前):

    <div class="editor-field"> 
        @Html.DropDownList("StandID", "--Select--") 
    </div> 

...但是“描述”+“-- £”+“费率”);不会运行:

DataBinding:“System.Data.Entity.DynamicProxies.Stand_63F8C9F623B3C0E57D3008A57081AFCD9C39E1A6B79B0380B60840F1EFAE9DB4”不包含名为“Description--£Rate”的属性。

谢谢你的帮助,

标记

4

5 回答 5

90

您可以使用简单的 LINQ 投影创建一个新的匿名类,然后使用SelectList(IEnumerable, string, string) 构造函数重载来指定要用于<option>元素的值和文本字段,即:

var stands = 
  db.Stands
    .Where(s => s.ExhibitorID == null)
    .Select(s => new 
     { 
       StandID = s.StandID,
       Description = string.Format("{0}-- £{1}", s.Description, s.Rate) 
     })
    .ToList();

ViewBag.StandID = new SelectList(stands, "StandID", "Description")

编辑

在 C#6 及更高版本中,字符串插值string.Format

   ...
   Description = $"{s.Description}-- £{s.Rate}"

如果您投影到一个强ViewModel类名(而不是匿名类),您无疑会希望用nameof操作符的安全性替换魔术字符串:

ViewBag.StandID = new SelectList(stands, nameof(Stand.StandID), nameof(Stand.Description));
于 2012-10-04T12:31:15.207 回答
15
var stands = db.Stands.Where(s => s.ExhibitorID == null).ToList();
IEnumerable<SelectListItem> selectList = from s in stands
                                         select new SelectListItem
                                                    {
                                                      Value = s.StandID,
                                                      Text = s.Description + "-- £" + s.Rate.ToString()
                                                    };
ViewBag.StandID = new SelectList(selectList, "Value", "Text");
于 2012-10-04T12:57:03.887 回答
7

您可以创建部分模型类

public partial class Stand
{
    public string DisplayName
    {
        get
        {
            return this.Description + "-- £" + this.Rate.ToString();
        }
    }

}

然后在您的视图中

var stands = db.Stands.Where(s => s.ExhibitorID == null).ToList();
ViewBag.StandID = new SelectList(stands,"StandID", "DisplayName");
于 2016-03-04T20:14:44.557 回答
4

您使用的构造函数的格式是 SelectList(IEnumerable items, string dataValueField, string dataTextField)。

因此,当您按照您的方式使用它时,您实际上是在告诉它绑定到名为“Description-- £Rate”的文本字段,如果这不是从数据库中调用的字段,它将不知道您是什么正在指示。

只要您在 dataValueField 中的值与您放置该值的属性的名称匹配,并且 dataTextField 与您放置文本的位置的属性名称匹配,上述两种方法中的任何一种都可以使用,可能是两者的混合上面的解决方案。(只是因为我更喜欢 lambda 表达式而不是 linq。)并且使用选择列表项可以防止它在转换后必须对集合执行 ToList。您实际上是在创建自然绑定到选择列表的对象。

您可能还需要检查描述或费率,以确保它们不是空的,然后再将它们放入列表

var stands = db.Stands.Where(s => s.ExhibitorID == null)
                  .Select(s => new SelectListItem
                {
                    Value = s.StandID.ToString(),
                    Text = s.Description + "-- £" + s.Rate.ToString()
                });


ViewBag.StandID = new SelectList(stands, "Value", "Text");
于 2012-10-04T13:09:44.223 回答
2

我通过修改我的视图模型来做到这一点,这是我的代码:

视图模型

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using MvcEsosNew.Models;
using System.Web.Mvc;

namespace MvcEsosNew.ViewModels
{
    public class EntitlementViewModel
    {
        public int EntitlementCount { get; set; }
        public Entitlement Entitlement { get; set; }
        public SelectList Member { get; set; }
        public SelectList Job_Grade { get; set; }
        public SelectList Department { get; set; }
        public SelectList Esos_Batch { get; set; }
    }

    public class department_FullName
    {
        public int deptID { get; set; }
        public string deptCode { get; set; }
        public string deptName { get; set; }
        public string fullName { get { return deptCode + " - " + deptName; } }
    }
}

控制器

public void getAllDepartment(EntitlementViewModel entitlementVM)
        {
            var department = from Department in db.Departments.Where(D => D.Status == "ACTIVE").ToList()
                             select new department_FullName
                             {
                                 deptID   = Department.id,
                                 deptCode = Department.department_code,
                                 deptName = Department.department_name
                             };
            entitlementVM.Department = new SelectList(department, "deptID", "fullName");
        }

风景

     <div class="form-group row">
                <div class="col-sm-2">
                    @Html.LabelFor(model => model.Entitlement.department_id)
                </div>
                <div class="col-sm-10">
                     @Html.DropDownListFor(model => model.Entitlement.department_id, Model.Department, new { @class="form-control" })
                     @Html.ValidationMessageFor(model => model.Entitlement.department_id)
                </div>
            </div>

结果:

结果

于 2017-12-11T03:29:11.393 回答