Html.ActionLink cannot be dynamically dispatched

“Consider casting the dynamic arguments or calling the extension method without the extension method syntax.”

Posts.Title doesn’t have a type (hence dynamic argument).

Just cast it via (string)Posts.Title.

Leave a Comment