vote up 3 vote down star
3

Since I have decided to let RC go while staying with Beta for now, I have no way of knowing whether there has been some progress in this area. Who has tried it, are there strongly typed RedirectToAction and maybe ActionLink in RC?

(I know there is some extra stuff in Futures assembly, but the question really refers to the main build).

flag

47% accept rate

1 Answer

vote up 9 vote down check

No, it doesn't.

protected RedirectToRouteResult RedirectToAction<T>(Expression<Action<T>> action, RouteValueDictionary values) where T : Controller
{
    var body = action.Body as MethodCallExpression;

    if (body == null)
    {
        throw new ArgumentException("Expression must be a method call.");
    }

    if (body.Object != action.Parameters[0])
    {
        throw new ArgumentException("Method call must target lambda argument.");
    }

    string actionName = body.Method.Name;

    var attributes = body.Method.GetCustomAttributes(typeof(ActionNameAttribute), false);
    if (attributes.Length > 0)
    {
        var actionNameAttr = (ActionNameAttribute)attributes[0];
        actionName = actionNameAttr.Name;
    }

    string controllerName = typeof(T).Name;

    if (controllerName.EndsWith("Controller", StringComparison.OrdinalIgnoreCase))
    {
        controllerName = controllerName.Remove(controllerName.Length - 10, 10);
    }

    RouteValueDictionary defaults = LinkBuilder.BuildParameterValuesFromExpression(body) ?? new RouteValueDictionary();

    values = values ?? new RouteValueDictionary();
    values.Add("controller", controllerName);
    values.Add("action", actionName);

    if (defaults != null)
    {
        foreach (var pair in defaults.Where(p => p.Value != null))
        {
            values.Add(pair.Key, pair.Value);
        }
    }

    return new RedirectToRouteResult(values);
}

That should work.

link|flag
Do this exist in the Futures dll? i can't find it, if it does? I also wonder why it was missed?? – Pure.Krome Apr 6 at 4:29
Chad .. how can this become an extension method to the Controller class? – Pure.Krome Apr 6 at 5:17
I'd recommend putting it on a base Controller class and making your controllers inherit from that. – Chad Moran Apr 6 at 12:55
The entire MVC framework should be strongly typed like this, I wish they would ditch magic strings, its so "DataSets". Thanx for the code Chad. – mxmissile May 28 at 17:03

Your Answer

Get an OpenID
or

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