我在我的视图页面上有3个搜索过滤器,所以我需要在转到另一个页面时将参数值传递给查询。我已经通过这个RouteValue =新的KeyValue完成了
问题是我不知道如何添加多个参数,除了statistical_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"])
})发布于 2019-08-21 16:13:27
试试这个
RouteValue = new List<KeyValuePair<string, string>>() { new KeyValuePair<string, string>("", ""), new KeyValuePair<string, string>("", "") }https://stackoverflow.com/questions/57586816
复制相似问题