Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个下拉列表,其中包含我的数据模型中的值。在我看来,我似乎无法让它发挥作用:
@Html.DropDownList("Program Types", new SelectList(Model.Select(x => x.ProgramType.ProgramType).Distinct().OrderBy(x => x), Model.Select(x => x.ProgramType.ProgramTypeId).Distinct().OrderBy(x => x)))
看看这个例子:
如何编写一个简单的 Html.DropDownListFor()
没有比这更简单的了,您可以很容易地根据您的情况调整此示例。
希望这对您有帮助并祝您好运!