gpt4 book ai didi

c# - 在 for each 循环中使用 DisplayFor

转载 作者:太空狗 更新时间:2023-10-29 17:37:57 24 4
gpt4 key购买 nike

我有以下看法:-

@foreach(var info in Model.Firewall.FirewallCustomers.OrderBy(a=>a.CustomerName)){

<td>@Html.DisplayFor(info.CustomerVLAN.VLANID)</td>
}

但是我不能写下面的内容

@Html.DisplayFor(info.CustomerVLAN.VLANID)</td>

我会得到以下错误:-

The type arguments for method 'System.Web.Mvc.Html.DisplayExtensions.DisplayFor(System.Web.Mvc.HtmlHelper, System.Linq.Expressions.Expression>)' cannot be inferred from the usage. Try specifying the type arguments explicitly

那么任何人都可以建议,如何在我的 foeach 循环中使用 DisplayFor 吗?

谢谢

最佳答案

DisplayFor需要一个表达。试试这个:

@foreach(var info in Model.Firewall.FirewallCustomers.OrderBy(a=>a.CustomerName)){
<td>@Html.DisplayFor(model => info.CustomerVLAN.VLANID)</td>
}

这里,model 是一个 lambda 表达式参数,即使它实际上没有在 lambda 表达式中使用,但构建表达式时需要这种语法。

关于c# - 在 for each 循环中使用 DisplayFor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19990926/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com