我有一个名为 Country 的字符串属性,可通过所有视图模型查看。我想将此属性添加到 Url.Action 的 RouteValueDictionary 所以现在我必须将每个 Url.Action 更改为
Url.Action("action","controller", new RouteValueDictionary{new {Country=Country}))。
我正在寻找干净的解决方案,在运行时将其添加到 RouteValueDictionary 而不是到处更改 Url.Action
请指教。
谢谢