Route order in fastendpoints library
See original GitHub issueHow can I fix the route order in fastendpoints library? I have two routes: /onboarding/{OnboardingId}
and /onboarding/restore
. But fastendpoints always goes to the first route because it thinks restore is also an OnboardingId.
Issue Analytics
- State:
- Created 3 months ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Configuration Settings
A light-weight REST Api framework for ASP.Net 6 that implements REPR (Request-Endpoint-Response) Pattern.
Read more >Advantages and disadvantages of FastEndpoints : r/dotnet
I'm really curious, what's the gain (except performance) compared to a single-action vanilla controller organized in the same fashion? [Route("/ ...
Read more >How to read claim values + handling multiple http verbs #8
Hi, i'm so happy to see your fastendpoints and started to use it, and still not reach at there where i can find...
Read more >Building REST APIs In .Net 6 The Easy Way!
we will be exploring the open source endpoint library FastEndpoints which is built on top of the new minimal api in .net 6,...
Read more >Routing in ASP.NET Core
Routing is responsible for matching incoming HTTP requests and dispatching those requests to the app's executable endpoints.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
just tried the following and it works as expected:
This is interesting… if I put the restore method on top of another method
http://localhost:5019/onboarding/restore
now returns 200 ok