我有一个自定义模型(假设是 CustomModel),用于在视图中填充我的 razor DropDownList:
namespace MyNamespace.Models
{
public class SelectListItem
{
public string Value { get; set; }
public string Text { get; set; }
}
public class ComponentTypeModel
{
private readonly List<ComponentType> componentTypes;
[Display(Name = "Component Type")]
public int SelectedCompTypeId { get; set; }
public IEnumerable<SelectListItem> CompTypeItems
{
get
{
var allCompTypes = componentTypes.Select(f => new SelectListItem
{
Value = f.Id.ToString(),
Text = f.Name
});
return allCompTypes;
}
}
public IEnumerable<SelectListItem> DefaultCompTypeItem
{
get
{
return Enumerable.Repeat(new SelectListItem
{
Value = "-1",
Text = "Select a component type"
},
count: 1);
}
}
}
}
然后在我看来,我使用剃刀执行以下操作:
@model MyNamespace.Models.CustomModel
@Html.LabelFor(m => m.SelectedCompTypeId);
@Html.DropDownListFor(m => m.SelectedCompTypeId, Model.CompTypeItems);
但第二个参数Model.CompTypeItems行:
@Html.DropDownListFor(m => m.SelectedCompTypeId, Model.CompTypeItems);
正在生成一个编译错误,指出它无效。有任何想法吗?