Html.ActionLink不能dynamic分派

我有一个MVC3的问题

我正在尝试使用@Html.ActionLink()为我的博客项目中的标题生成链接。

ActionLink使用常量string工作只是丹迪,但如果我使用Posts.Title (当前Post模型的标题被循环),我得到这个exception:

 CS1973: 'System.Web.Mvc.HtmlHelper<dynamic>' has no applicable method named 'ActionLink' but appears to have an extension method by that name. Extension methods cannot be dynamically dispatched. Consider casting the dynamic arguments or calling the extension method without the extension method syntax. 

“考虑转换dynamic参数或调用扩展方法而不使用扩展方法语法。”

Posts.Title没有types(因此是dynamic的参数)。

只需通过(string)Posts.Title投射。