在我的模型中,我希望能够通过 DropDownList 选择属性的值。像这样:
public int Foo { get; set; }
private IEnumerable<string> FooOptions = new IEnumerable<string> { "Foo", "Bar" };
因此,在呈现的 html 中,我将有以下内容:
<select name="Foo">
<option value="0">Foo</option>
<option value="1">Bar</option>
</select>
这在 Controller 和 View 中很容易做到,但我实际上正在寻找一种与 Visual Studio 的默认 Controller / View Scaffolder 一起工作的方法。
甚至可能吗?或者更好的是,有没有更好的方法来实现这一点?
TIA,安德烈