在不使用Foreach循环的情况下将数据库值绑定到Mvc中的RadiobuttonList

时间:2014-12-08 08:34:30

标签: c# asp.net-mvc-4

我正面临着在不使用for循环的情况下将集合值绑定到radiobuttonlist的问题。 让我们考虑下面的模型

public class EducationList
    {
       //Some Fields
        public ICollection<CourseTypes> employee_CourseTypes { get; set; }
    }

课程类型包含Cource名称和cource id 我需要将这些cource类型绑定到mvc中的radiobutton列表 不使用for循环

我已声明在某些类中获取名为getcources的cource类型方法i =此方法返回courcename和cource id

只是comapare下面的代码

@Html.DropDownListFor(model => model.CourceId, new SelectList(Model.employee_CourseTypes, "CourceTypeTypeId", "CourceName"), "--Select--")

像这样我必须绑定radiobuttonlist请帮助,我们将非常感谢您的帮助

0 个答案:

没有答案