开发者

Strongly Typed ActionLink In Asp.Net MVC 2?

I just downloaded VS.NET 2010 RC and created a new MVC project. It would seem that strongly typed ActionLinks are 开发者_Python百科not in this release? Is this always going to be a "futures" thing? Or am I missing something?

<%=Html.ActionLink<HomeController>(x => x.Index(),"Home")%>


Strongly-typed ActionLink and route helpers are not scheduled to be moved from Futures to the main product any time soon. In general it's not possible to run the MVC pipeline backward. That is, given a MethodInfo and parameters, it's impossible to make a route which is guaranteed to hit that action. For example, custom controller factories, action invokers, filters, existing files, or any number of other things can affect which action (if any) a particular route ends up hitting.

Because of this, the contract for strongly-typed ActionLink in Futures is essentially "given this information and assuming no extensibility hooks, guess which route will hit this action." Such a contract is inappropriate for actual supported framework code.


No there is no ActionLink<> see ScottGu blog (( For performance reason.

re: ASP.NET MVC 2: Strongly Typed Html Helpers Tuesday, January 12, 2010 2:32 AM by ScottGu

@Anthony,

but what about strongly typed ActionLinks?

We aren't adding built-in runtime helpers for this - but David Ebbo has created a nice VS tooling add-on that creates strongly-typed helpers you can use: aspnet.codeplex.com/wikipage

Hope this helps,

Scott

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜