是否可以将字符串转换为 routeValues?
每个例子:
return RedirectToAction("Index", "Home", new { id = 1});
至
return RedirectToAction("Index", "Home", "id = 1");
我需要它是因为我想将 routeValues 保存在数据库中。
我已经读过这个:convert string into (object) routeValues C#,但是这个人不知道这是否是更受支持的方式。