ASP.Net MVC:Webgrid和下拉式绑定与模型数组类似的方法

时间:2016-01-11 20:40:07

标签: asp.net-mvc

只看到这篇文章https://stackoverflow.com/a/28521169/728750

grid.Column(
    "TodosLosRoles", 
    "Roles", 
    format: item => Html.DropDownList(((int)item.UserId).ToString(), Model[0].TodosLosRoles)
)

如果我写上面的代码Model[0].TodosLosRoles,那我怎么能指定模型序号位置而不是硬代码值0.

我可以在这里使用for循环吗?

for(int i=0; i <= model.students.count-1;i++)
{

    grid.Column(
        "TodosLosRoles", 
        "Roles", 
        format: item => Html.DropDownList(((int)item.UserId).ToString(), Model[i].TodosLosRoles)
    )}

上面的代码会起作用.....不确定。需要建议。感谢

0 个答案:

没有答案