连接列作为动作链接

时间:2014-04-05 08:02:07

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

我连接了我的模型的三列并将它们显示为一个作为操作链接调用控制器的方法。我写了一些代码,它给出了当前上下文中不存在项的错误以及{的最佳重载方法匹配{1}}有一些无效的论点。

查看:

System.Web.Helpers.WebGrid.Column(string, string, System.Func<dynamic,object>, string, bool)

1 个答案:

答案 0 :(得分:1)

尝试看看它是否有效:

 grid.Column(header: "YourColumnName", format: (item) =>new HtmlString(
                        Html.ActionLink("linkText", "actionName","controllerName", new { id = item.yourItemId },null).ToString()))