大家好,我的表中有这些数据
详情_ID | 作者 | 详细标题 | 详细说明 | 创建日期 | 更新日期
12 |管理员 | 测试 | 只是一个测试| 2012 年 12 月 5 日 | 2012
年 12 月 5 日 13 |管理员 | 测试2 | 狗对猫 | 2012 年 12 月 5 日 | 2012
年 12 月 5 日 14 |管理员 | 测试3 | 呸呸呸| 2012 年 12 月 5 日 | 2012
年 12 月 5 日我将它们称为列表
public ViewResult Index()
{
return View(db.ProjectDetails.ToList());
}
和我的看法
@model IEnumerable<ProjectXYZ.Models.ProjectDetail>`
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table>
<tr>
<th>Author</th>
<th>DetailTitle</th>
<th>DetailDescription</th>
<th>DateCreated</th>
<th>DateUpdated</th>
<th></th>
</tr>
@foreach (var item in Model) {
<tr>
<td>@Html.DisplayFor(modelItem => item.Author)</td>
<td>@Html.DisplayFor(modelItem => item.DetailTitle)</td>
<td>@Html.Raw(item.DetailDescription)</td>
<td>@Html.DisplayFor(modelItem => item.DateCreated)</td>
<td>@Html.DisplayFor(modelItem => item.DateUpdated)</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.details_ID }) |
@Html.ActionLink("Delete", "Delete", new { id=item.details_ID })
</td>
</tr>
}
</table>
问题:我只想在视图中查看 details_ID = 12 的单个项目
我知道我必须在我的控制器上进行一些查询,但不知道如何..
我很感激任何帮助.. :)