我的MVC3有问题
我正在尝试使用@Html.ActionLink()
在我的博客项目中为标题生成链接。
在ActionLink
中使用常量字符串只是花花公子,但如果我使用Posts.Title
(当前Post模型的标题被循环播放),我会遇到以下异常:
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.
答案 0 :(得分:109)
“考虑在没有扩展方法语法的情况下强制转换动态参数或调用扩展方法。”
Posts.Title没有类型(因此是动态参数)。
只需通过(字符串)Posts.Title。
投射