Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have and action which takes a userId parameter:

~/Users/Show?userId=1234

Everything works fine except when the userId provided is not an int or is missing.

Then it throws this exception:

            Message: The parameters dictionary contains a null entry for parameter 'userId' of 
    non-nullable type 'System.Int32' for method 'System.Web.Mvc.ActionResult Show(Int32, 
System.Nullable`1[System.Boolean], System.String)' in 'S4U.Web.Mvc.Controllers.ProfileController'. An optional parameter must be a reference type, 
    a nullable type, or be declared as an optional parameter.
        Parameter name: parameters

..after which the user is redirected to the error page.

How do I configure the route so the action isn't hit at all and it throws a 404 instead?

share|improve this question

3 Answers

up vote 1 down vote accepted

As mentioned in my comment on Ufuk Hacıoğulları's answer you should handle validation either through adding a constraint to a route, through having a nullable type if the parameter can be empty.

For the former approach if you have an appropriate constraint this means your route will not be picked up - you will need a catch all route or other error handling. For the nullable type you can test in the action whether it has a value and act accordingly.

Keeping action paramters as strong types is a pattern to aim for.

share|improve this answer

Don't use a string as suggested somewhere below. Use:

public ActionResult (int userId = 0)
{

}

That's the best practise.

You can also do:

public ActionResult (int? userId)
{
    if (userId.HasValue)
    {
        //...
    }
}
share|improve this answer

Make your UserId parameter a string and try to parse it as an int.

public ActionResult (string userId)
{
    //parse and do something
}

This way you can avoid exceptions if the parameter is not provided or it's not an integer.

Like Rob Wes suggested you can introduce route constraints and make sure only request with valid parameter gets mapped to this action.

I don't think first approach is too bad but it's a matter of style.

Here's a custom route for the second approach:

routes.MapRoute(
            "ProfileRoute", // Route name
            "profile/{action}/{id}", // URL with parameters
            new { controller = "profile", action = "Index", id = UrlParameter.Optional },
            new { id = @"\d+" } // make sure it's an integer
        );

Make sure this route is mapped before the default route. Otherwise default route will just mask this route. With this route you can be sure you will get an integer in your action if any value is provided. But since id parameter is optional you still have to make it a nullable int in your action.

share|improve this answer
I think you're right. I now feel a bit silly asking this question. – Lee Smith Mar 2 '12 at 11:52
1  
No! This is the wrong approach - having strongly typed parameters on actions is a good thing. Any issues with parameters should be handled using route constraints or using nullable types – Rob West Mar 2 '12 at 11:52
Thanks. Just added the constraint and it's working – Lee Smith Mar 2 '12 at 12:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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