我正在使用ASP.NET MVC 5实体框架。在我的视图中,我有一个下拉菜单,我想要做的是使用枚举来填充下拉菜单。这就是我在课堂上学到的东西:
public enum occupancyTimelineTypes : int
{
TwelveMonths = 12,
FourteenMonths = 14,
SixteenMonths = 16,
EighteenMonths = 18
}
和此:
[DisplayName("Occupancy Timeline")]
[Required]
public string occupancyTimeline { get; set; }
public occupancyTimelineTypes occupancyTimelineType
{
get
{
return Enum.Parse(typeof(occupancyTimelineTypes), occupancyTimeline);
}
}
我的问题是,我收到错误我不知道如何修复:
无法将类型'object'隐式转换为显式转换 存在(你是否错过演员表?)
我正在填充我的下拉菜单:
@Html.DropDownListFor(model => model.occupancyTimeline,Model.occupancyTimelineType.ToSelectList());
这是我的ToSelectList()
方法
public static class MyExtensions
{
public static SelectList ToSelectList(this occupancyTimelineTypes enumObj)
{
var values = from occupancyTimeline e in Enum.GetValues(typeof(occupancyTimeline))
select new { Id = e, Name = string.Format("{0} Months", Convert.ToInt32(e)) };
return new SelectList(values, "Id", "Name", enumObj);
}
}
我不会也不会使用Html.EnumDropDownListFor()
,因为出现了太多错误,这是一个噩梦,并且可以解决这些错误。
这必须是@Html.DropDownListFor
答案 0 :(得分:7)
Enum.Parse
返回对象(它不是通用的),因此您需要显式转换返回值。使用:
return (occupancyTimelineTypes)Enum.Parse(typeof(occupancyTimelineTypes), occupancyTimeline);