Pager in .Net Core 2.1
问题 I have added ReflectionIT.Mvc.Paging from NuGet Link but I have a problem. In a controller i have 2 methods, Index and Organizations. When I am on the view of Orginizations and press page with number "2" in controller goes to index and not on Organizations method. How to force it to go on a method I want or to extend this @await this.Component.InvokeAsync("Pager", new { pagingList = this.Model }) to pass method name as parameter? Controller: public IActionResult Index() { return View(); }