在索引视图中显示int方法的结果

时间:2016-03-31 00:54:10

标签: c# sql asp.net-mvc linq razor

我做了一个简单的方法来计算我在表中有多少张专辑,我唯一的问题很简单,我想在AlbumIndex视图中显示Count方法的结果。让我们说我要展示一个标签:" Total"除了它之外的数字,我如何在视图中执行此操作?

这是方法(在名为Operations的类中,与控制器和模型分开):

 public int AlbumCounter()
        {
            int x = db.Albums.Count();
            return x;
        }

这是我的AlbumsController中的ActionResult方法(我不知道该怎么做,我想在索引视图中显示结果)

public ActionResult AlbumCounter()
        {
            return
        }

这是索引视图:

@model IEnumerable<AlexMusicStore.Models.Album>

@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>

<p>
    @Html.ActionLink("Create New", "Create")
</p>
<table class="table">
    <tr>
        <th>
            @Html.DisplayNameFor(model => model.Artist.Name)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.AlbumName)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.DateCreated)
        </th>
        <th></th>
    </tr>

@foreach (var item in Model) {
    <tr>
        <td>
            @Html.DisplayFor(modelItem => item.Artist.Name)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.AlbumName)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.DateCreated)
        </td>
        <td>
            @Html.ActionLink("Edit", "Edit", new { id=item.AlbumID }) |
            @Html.ActionLink("Details", "Details", new { id=item.AlbumID }) |
            @Html.ActionLink("Delete", "Delete", new { id=item.AlbumID })
        </td>
    </tr>
}

</table>

0 个答案:

没有答案