I used to be able to do the following in Preview 3
<%=Html.BuildUrlFromExpression<AController>(c => c.AnAction(par1, par2)%>
How can I create URLs in a strongly typed way using MVC beta? The only thing I found is
<%= Html.ActionLink("aName", "ActionName", "ControllerName")%>
It is not strictly typed off course.
source
share