gpt4 book ai didi

c# - 如果 .Count == 0 条件运算符不显示

转载 作者:太空宇宙 更新时间:2023-11-03 19:38:51 26 4
gpt4 key购买 nike

在我的 MVC View 中,我想使用条件运算符来显示变量的计数即使它是 0

@foreach (var item in Model.TotalNumberProxy.LstFByTAndB)
{
<tr>
@using (var db = new ConnectionStringName())
{
<td>@db.code_VType.Find(item.Key).VType</td>
}
@for (var i = 1; i <= 12; i++)
{
<td>
@(item.Count(x => x.tblFAM.CDate.Month == i) == 0 ? 0 : item.Count(x => x.tblFAM.CDate.Month == i))
</td>
}
<td>@item.Count()</td>
</tr>
}

在我的 for 循环中,我正在使用条件运算符,但我无法得到 0 以显示即使计数为 0 这是我的条件语句。如何让它显示?

最佳答案

为什么不直接返回结果呢?

@item.Count(x => x.tblFAM.CDate.Month == i)

关于c# - 如果 .Count == 0 条件运算符不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57397529/

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