We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's a bit of a weird setup, possibly, so don't know if this is actually a bug or not.
I have
[HttpDelete] [Route("{id:int}/provider/{providerId:int?}", Order = 3)] public async Task<ActionResult> DeleteProvider(int id, int? providerId) { .. }
Then
[Route("{id:int}/provider/{providerId:int}", Order = 1)] [MvcSiteMapNode(Title = "Edit Provider", ParentKey = "listProviders", Key = "EditProvider", ResourceKey = "<key>", PreservedRouteParameters = "id,providerId")] public async Task<ActionResult> EditProvider(int id, int providerId) { .. }
This doesn't resolve the breadcrumb when doing:
@Html.SiteMapPath()
However, if I remove the HttpDelete method entirely, it works fine.
Like I said, probably an obscure usecase, happy to try and build a small repo, but putting this here initially to see if it's a known issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It's a bit of a weird setup, possibly, so don't know if this is actually a bug or not.
I have
Then
This doesn't resolve the breadcrumb when doing:
However, if I remove the HttpDelete method entirely, it works fine.
Like I said, probably an obscure usecase, happy to try and build a small repo, but putting this here initially to see if it's a known issue.
The text was updated successfully, but these errors were encountered: