I\'ve got two actions in my ASP.NET Core Web API application\'s controller:
[HttpGet(\"get-all\")] public IActionResult GetAll() { ... }
a
Have you tried to use RedirectToActionResult? Like this (change ControllerName with your actual Controller's name ):
RedirectToActionResult("GetAll", "ControllerName", null);
Documentation
Hope you'll find this useful.