我有以下看法:-
@foreach(var info in Model.Firewall.FirewallCustomers.OrderBy(a=>a.CustomerName)){
<td>@Html.DisplayFor(info.CustomerVLAN.VLANID)</td>
}
但我无法写出以下内容
@Html.DisplayFor(info.CustomerVLAN.VLANID)</td>
我会收到以下错误:-
无法从用法中推断方法“System.Web.Mvc.Html.DisplayExtensions.DisplayFor(System.Web.Mvc.HtmlHelper, System.Linq.Expressions.Expression>)”的类型参数。尝试明确指定类型参数
那么任何人都可以建议,如何在我的 foeach 循环中使用 DisplayFor 吗?
谢谢