【发布时间】:2019-08-21 07:47:19
【问题描述】:
我的视图页面上有 3 个搜索过滤器,因此在转到另一个页面时需要将参数值传递给查询。我已经通过这个 RouteValue = new KeyValue
问题是我不知道如何添加多个参数,除了statistics_entity我还有两个
@await Component.InvokeAsync("PaginatorComponent",
new
{
Module = "EsahsUsers",
Page = "Index",
HasPreviousPage = Model.HasPreviousPage,
PageNumber = Model.PageNumber,
PageCount = Model.PageCount,
RouteValue = new KeyValuePair<string, string>("Statistical_Entity", Context.Request.Query["Statistical_Entity"])
})
【问题讨论】:
标签: c# asp.net-core pagedlist