我有一个不断变化的行业列表,希望用户在创建新调查时可以选择。
我可以使用ViewModel或ViewBag(我认为)来完成此操作。我正在尝试使用ViewBag。出现DropDownListFor错误:
CS1928
HtmlHelper<Survey>
不包含DropDownListFor
的定义,最佳扩展方法重载SelectExtensions.DropDownListFor<TModel, TProperty>(HtmlHelper<TModel>, Expression<Func<TModel, TProperty>>, IEnumerable<SelectListItem>, object)
包含一些无效的参数2_Views_Surveys_Create.cshtml
调查模型,具有行业的外键:
public class Survey
{
[Key]
public int id { get; set; }
[Display(Name = "Survey Name")]
public string name { get; set; }
[Display(Name = "Industry")]
public int industryId { get; set; }
[ForeignKey("industryId")]
public virtual Industry industry { get; set; }
}
将Industries SelectList加载到ViewBag中的控制器:
// GET: Surveys/Create
public ActionResult Create()
{
ViewBag.Industries = new SelectList(db.industry, "Id", "Name");
return View();
}
创建视图:
<div class="form-group">
@Html.LabelFor(model => model.industryId, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.DropDownListFor(model => model.industryId, ViewBag.Industries, "-Select Industry-")
@Html.ValidationMessageFor(model => model.industryId, "", new { @class = "text-danger" })
</div>
</div>
答案 0 :(得分:1)
ViewBag的属性没有编译器可以用来确定要调用的方法的重载类型。通过使用显式强制转换来帮助编译器。
app