我希望在表格页脚中显示摘要总计,而不在视图模型中创建特殊属性。
然而......页脚代码失败,说:
"模板只能用于字段访问,属性访问, 单维数组索引或单参数自定义索引器 表达式"
FOOTER CODE看起来像:
<tfoot>
<tr>
<td colspan="6" class="bg-gray"></td>
</tr>
<tr>
<td colspan="2">
Totals DO NOT include Price Consessions
</td>
<td>
@Html.DisplayFor(modelItem => Model.Entities.Sum( x => x.Price))
</td>
<td>
@Html.DisplayFor(modelItem => Model.Entities.Sum(x => x.AnnualFee))
</td>
<td>
</td>
</tr>
</tfoot>
答案 0 :(得分:0)
请忽略@Html.DisplayFor
并放置@Model.Entities.Sum( x => x.Price)