当我尝试在 razor 中使用 if 子句时出现错误,如下所示:
“@”字符后出现意外的“if”关键字。
@foreach (var item in Model) {
@if (item.Country != "No Country")
{
<li>@Html.ActionLink(item.CountryWithCount, "IndexByProv", "EventInfo", new { country = item.Country }, null)</li>
为什么我得到这个错误?