用于求和总计的MVC显示模板

时间:2015-07-05 14:48:33

标签: c# asp.net-mvc

我希望在表格页脚中显示摘要总计,而不在视图模型中创建特殊属性。

然而......页脚代码失败,说:

  

"模板只能用于字段访问,属性访问,   单维数组索引或单参数自定义索引器   表达式"

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>
            &nbsp;
        </td>
    </tr>
</tfoot>

1 个答案:

答案 0 :(得分:0)

请忽略@Html.DisplayFor并放置@Model.Entities.Sum( x => x.Price)