我尝试使用实体框架将旧的 asp.net webforms 应用程序转换为 MVC 应用程序。我使用脚手架-DbContect 命令生成了此应用程序的模型,该命令是 EF Core 工具的一部分。我能够生成一个项目列表。在本例中,我正在转换旧的问题跟踪系统。该列表是已注册错误的列表。但这是一个相当长的列表(5K+记录),所以我想添加分页。我在 SO 上发现了这个项目,第三个答案看起来对我有用。
所以我将下一个代码添加到我的控制器索引操作中
public ActionResult Index(int page = 0)
{
int pageSize = 10;
var qry = db.Bugs
.Include(e => e.Organization)
.Include(e => e.AssignedUser)
.Include(e => e.UpdatedUser)
.Include(e => e.ReportedUser)
.Include(e => e.Project)
.Include(e => e.Category)
.Include(e => e.Status)
.Include(e => e.Priority)
.AsNoTracking()
.AsQueryable();
var count = qry.Count();
var data = qry.Skip(page * pageSize).Take(pageSize).OrderBy(e => e.BgId);
this.ViewBag.MaxPage = (count / pageSize) - (count % pageSize == 0 ? 1 : 0);
this.ViewBag.Page = page;
return View(data.ToList());
}
问题是,我没有得到任何结果。如果我调试数据 var 的计数为 10,但没有输出。 如果我不过滤而只是在返回 View() 中使用 qry.ToList() ,我会得到所有记录。也没有抛出异常。我缺少什么?有人有线索吗?我想我忽略了一些事情。
感谢 @pcalkins 的帮助,我可以使用 PageList.mvc 帮助器解决我的问题。
我最终在我的操作中得到了下一个代码:
// GET: Bugs
public ActionResult Index(int? page)
{
var qry = db.Bugs
.Include(e => e.Organization)
.Include(e => e.AssignedUser)
.Include(e => e.UpdatedUser)
.Include(e => e.ReportedUser)
.Include(e => e.Project)
.Include(e => e.Category)
.Include(e => e.Status)
.Include(e => e.Priority)
.OrderBy(e => e.BgId).ToList();
int pageSize = 20;
int pageNumber = page ?? 1;
return View(qry.ToPagedList(pageNumber, pageSize));
}
我必须更改视图才能使其与此 PageList 帮助器一起使用:
@model PagedList.IPagedList<IssueTracker.Models.Bugs>
@using PagedList.Mvc;
<link href="~/Content/PagedList.css" rel="stylesheet" type="text/css" />
@{
ViewBag.Title = "Issuelist";
}
<div class="container pt-5">
<div class="pb-2">
<form action="" class="form-inline">
@Html.ActionLink("Add", "Create", "Bugs", null, new { @class = "btn btn-success mr-sm-2" })
<div class="form-group mr-sm-2">
<select class="custom-select">
<option selected="">Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>
<button type="button" class="btn btn-primary mr-sm-2">
<i class="fa fa-print"></i>
</button>
<button type="button" class="btn btn-primary mr-sm-2">
<i class="fa fa-file-excel-o"></i>
</button>
</form>
</div>
<div class="table-responsive">
<table class="table table-hover tauw-table table-sm" id="tauw-table">
<thead>
<tr>
<th scope="col">
ID
</th>
<th scope="col">
Description
</th>
<th scope="col">
Reported by
</th>
<th scope="col" style="width:120px">
Reported on
</th>
<th scope="col">
Status
</th>
<th scope="col">
Priority
</th>
<th scope="col">
Organisation
</th>
<th scope="col">
Category
</th>
<th scope="col">
Project
</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<th scope="row">
@Html.DisplayFor(modelItem => item.BgId)
</th>
<td>
@Html.DisplayFor(modelItem => item.BgShortDesc)
</td>
<td>
@Html.DisplayFor(modelItem => item.ReportedUser.UsUsername)
</td>
<td>
@Html.DisplayFor(modelItem => item.BgReportedDate)
</td>
<td>
@Html.DisplayFor(modelItem => item.Status.StName)
</td>
<td>
@Html.DisplayFor(modelItem => item.Priority.PrName)
</td>
<td>
@Html.DisplayFor(modelItem => item.Organization.OgName)
</td>
<td>
@Html.DisplayFor(modelItem => item.Category.CtName)
</td>
<td>
@Html.DisplayFor(modelItem => item.Project.PjName)
</td>
<td style="width:50px;">
<a href="@Url.Action("Edit", "Bugs",new { id = item.BgId })" class="fa fa-edit"></a>
<a href="@Url.Action("Delete", "Bugs",new { id = item.BgId })" class="fa fa-trash"></a>
</td>
</tr>
}
</tbody>
</table>
<br />
Page @(Model.PageCount < Model.PageNumber ? 0 : Model.PageNumber) of @Model.PageCount
@Html.PagedListPager(Model, page => Url.Action("Index",
new { page, sortOrder = ViewBag.CurrentSort, currentFilter = ViewBag.CurrentFilter }))
</div>
我无法立即让它发挥作用。有时只显示 1 条记录,有时 4 条,非常不可预测。当我尝试调试时,我看到一个错误,例如:“已经有一个与此连接关联的打开的 DataReader,必须首先关闭它。”当我搜索答案时,我遇到了 this 网站,该网站建议使用带有 include() 选项的 ToList() 函数。这解决了我的分页问题。希望这也能帮助其他人。