AspNet.Mvc.TypedRouting icon indicating copy to clipboard operation
AspNet.Mvc.TypedRouting copied to clipboard

A collection of extension methods providing strongly typed routing and link generation for ASP.NET Core MVC projects.

Results 15 AspNet.Mvc.TypedRouting issues
Sort by recently updated
recently updated
newest added

The good news is that this is already done in this fork: https://github.com/czmirek/AspNet.Mvc.TypedRouting

I've been using this library without issue for some time, including in .NET Core 2.x apps, so thanks for that 🙂 However, I've just come across an issue with standard...

enhancement

Hi, given an action with a ViewModel parameter public IActionResult Index(IndexViewModel model) and a viewModel like this public class IndexViewModel { public int MyProperty {get;set;} } i would like that...

enhancement

When using `Url.Action(c => c.ActionName()) ` If "ActionName()" is inherited from a base class, I get "Method XYZ in class ABC is not a valid controller action." Or am I...

enhancement

Hi, Just found a possible issue when calling RedirectToAction with target action on another controller. Here is the code: ``` public class HomeController : Controller { public IActionResult Index() {...

enhancement

Currently, developers need to do this before the tests: https://github.com/ivaylokenov/AspNet.Mvc.TypedRouting/blob/master/test/AspNet.Mvc.TypedRouting.Test/TestInit.cs Add Wiki page for unit testing.

enhancement

Is there a way to avoid handling the [FromServices] parameters injected into the Action method?

question

In the following scenario, keyword `this` is required; I assume this is because you have two generic methods with both `TController : Controller` and `TController : class`. This is annoying....

enhancement

Just a few comments on semantic versioning: v1.3.0 switched its dependencies to the ASP.NET Core non-LTS channel. This is a major change, which I think should have been versioned as...

question