Dysphoria.Net.UrlRouting
3.1.0.34592
dotnet add package Dysphoria.Net.UrlRouting --version 3.1.0.34592
NuGet\Install-Package Dysphoria.Net.UrlRouting -Version 3.1.0.34592
<PackageReference Include="Dysphoria.Net.UrlRouting" Version="3.1.0.34592" />
<PackageVersion Include="Dysphoria.Net.UrlRouting" Version="3.1.0.34592" />
<PackageReference Include="Dysphoria.Net.UrlRouting" />
paket add Dysphoria.Net.UrlRouting --version 3.1.0.34592
#r "nuget: Dysphoria.Net.UrlRouting, 3.1.0.34592"
#:package Dysphoria.Net.UrlRouting@3.1.0.34592
#addin nuget:?package=Dysphoria.Net.UrlRouting&version=3.1.0.34592
#tool nuget:?package=Dysphoria.Net.UrlRouting&version=3.1.0.34592
typed-url-routing
This is a library which adds strong static typing to the URL-routing and link generation in Microsoft's MVC4 (and MVC5).
It lets you:
- Define your application’s URL routes as statically-typed, first-class-objects
- Bind routes to controller actions, in such a way that the compiler catches your mistakes (like parameter mismatches or misspellings)
- Generate links in your Razor code (a) succinctly and (b) checked at compile-time.
- Use Visual Studio refactoring to rename routes or actions, automatically—without missing any references.
The key things you need to know are:
- It all works at compile time. You don’t need to run a program to generate code or anything like that. Just include the assembly in your project and start using it.
- You will write less code.
I’ve used it so far in a 3 commercial web projects:
- A small intranet system for an energy supplier;
- In the business-to-business website and associated back-office systems for a logistics company;
- Intranet system for an international electronics recycling company.
It’s reached a level of maturity where it’s much more comfortable to use than the built-in, dynamically-typed, MVC routing system.
It now has a website, including an introductory tutorial:
Here’s the original blog post which explains the project:
https://dysphoria.net/2013/03/14/strongly-typed-action-references-in-microsoft-mvc4/
I can’t offer commercial support at the moment, but please get in touch if you’re using it. Do let me know of any problems you have with it, or suggestions. Also, pull requests for improvements are very welcome!
–Andrew Forrest
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.2
- Microsoft.AspNet.Mvc (>= 4.0.20710)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 3.1.0.34592 | 187 | 6/1/2026 |
| 3.0.2.26366 | 32,107 | 10/21/2022 |
| 3.0.1.19546 | 726 | 10/12/2022 |
| 3.0.0.30081 | 1,044 | 10/6/2022 |
| 2.2.1.37986 | 136,906 | 5/31/2014 |
| 2.2.0.18408 | 1,885 | 5/31/2014 |
| 2.1.0.39834 | 2,001 | 1/20/2014 |
| 2.0.0.19626 | 1,987 | 12/18/2013 |
Can now specify an application path in HttpContext.Items which overrides the value of HttpRequest.ApplicationPath for URL generation (resolution).