I am creating a menu that displays items depending on user roles. Ideally I would prefer to use ActionLink extension from MVC Futures, so in a view it would look like this:
@foreach (var item in Model.Items)
{
@( Html.ActionLink<item.MyControllerType>(item.SomeAction, item.Name) )
<!-- Rather than
<a href="@item.Location">@item.Name</a>
-->
}
Is that possible? I can use the standard method, but would prefer to stay away from magic strings