Author: you've been HAACKED | Posted on: 6/2/2009 8:56:16 AM | Views : 1017

One of the features contained in the MVC Futures project is the ability to generate action links in a strongly typed fashion using expressions. For example: <% = Html.ActionLink<HomeController>(c => c.Index()) %> Will generate a link to to the Index action of the HomeController . It?s a pretty slick approach, but it is not without its drawbacks. First, the syntax not one you?d want to take as your prom date. I guess you can get used to it, but a lot of people who see it for the first time kind of recoil at it. The other problem with this approach is performance as seen in this slide deck I learned about from Brad Wilson . One of the pain points the authors of the deck found was that the compilation of the expressions was very...(read more) ...

Go to the complete details ...