I am trying to add anything in the query of the request to anchors in the html result:
Fictitious example:
User makes a request (note that band and song could be anything, I have a route catering this request: template: "{band}/{song}"):
http://mydomain/band/song?Param1=111&Param2=222
Now I want my anchors to append the query string part to the href of my anchors. So I tried something like this (note the 'asp-all-route-data'):
<a asp-controller="topic" asp-action="topic" asp-route-band="iron-maiden" asp-route-song="run-to-the-hills" asp-all-route-data="@Context.Request.Query.ToDictionary(d=>d.Key,d=>d.Value.ToString())">Iron Maiden - Run to the hills</a>
The append of the query string actually works with the above code but then the "iron-maiden" and "run-to-the-hills" are lost in the result. The above tag helper returns the following (note how the helper mirrors the band and song in the request into the href and not the band and song I specified in the asp-route attributes):
<a href="http://mydomain/band/song?Param1=111&Param2=2222">Iron Maiden - Run to the hills</a>
I expect the following result from the helper:
<a href="http://mydomain/iron-maiden/run-to-the-hills?Param1=111&Param2=2222">Iron Maiden - Run to the hills</a>
It seems like when I use the asp-all-route-data I loose the asp-route-band and asp-route-song values in the result.
Has anybody ever stumbled across this?
Thanks
Hooroo
@Context.GetRouteData().Values
work? GetRouteData gets the routes from the routing middleware as key value pairs and should also contain query parameters. Not sure if it works in your case and if asp-route-band & asp-route-song are hardcoded or take from route in your case – Leuco