To link to Controller/A/<anId>
I do this:
@Html.ActionLink(anId, "Action", "Controller", new {id = anId})
Action is underlined by Resharper and I can navigate to it with F12.
But I have a link to an api controller:
@Html.ActionLink("API Version", "../api/controller/", new {id = anId})
This does not have a resharper navigation option and is not going to refactored if I rename the controller. Is there a cleaner way to link to an APIController from a razor view? Particularly one Resharper recognises.