vote up 2 vote down star
1

Moved from preview 2 to preview 5 and now my Html.ActionLink calls are all failing. It appears that the generic version has been replaced with a non-type safe version.

// used to work
<li>
  <%= Html.ActionLink<HomeController>(c => c.Index(), "Home")%>
</li>
// what appears I can only do now
<li>
  <%= Html.ActionLink<HomeController>("Index", "Home")%>
</li>

Why did The Gu do this? Has it been moved to Microsoft.Web.Mvc or somewhere else as a "future"? Is there a replacement that is generic? Halp!

flag

1 Answer

vote up 6 vote down check

Don't blame the GU, it's my fault. That method has been moved to MvcFutures. Here's a blog post that provides the foundation for why this change was made.

link|flag
Aaaw, come on. As if you can't check the method being called in the Expression to see if it has the ActionNameAttribute on it. – Will Sep 19 '08 at 20:58
Nope, because that attribute could be applied dynamically and not directly on the method. – Haacked Sep 21 '08 at 18:02
Not to metnion, that there are other extensibility points that could change the action name after method selection. – Haacked Sep 21 '08 at 18:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.