MVC.NET框架中的分页不起作用,如何使其起作用



我尝试使用实体框架将旧的asp.net web表单应用程序转换为MVC应用程序。我使用scaffold DbContect命令为该应用程序生成了模型,该命令是EF Core Tools的一部分。我能够生成一个项目列表。在这种情况下,我正在转换一个旧的issuetracker系统。该列表是已注册Bug的列表。但这是一个相当长的列表(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,但没有输出。如果我不过滤,只使用qry。ToList((在返回的View((中,我得到了所有的记录。也没有抛出异常。我错过了什么?有人知道线索吗?我想我忽略了什么。

多亏了@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>

我不能马上让它工作。它有时只给我看了一张唱片,有时是4张,非常不可预测。当我尝试调试时,我看到一个错误,比如:;已经有一个打开的DataReader与此连接关联,必须先关闭它"当我搜索答案时,我发现这个网站建议使用ToList((函数和include((选项。这解决了我的寻呼问题。希望这也能帮助其他人。

最新更新