I have the following 3 routes
- student/available/classes/{id}
- student/available/classes/{studentId}/{classTypeId}
- student/available/classes/query/{q}
This is how I register the routes in my global.asax.cs file
//Student Checkin
routes.MapRoute("StudentAvailableClasses_GetAllForStudent",
"student/available/classes/{id}",
new {controller = "StudentCheckin", action = "GetById"});
routes.MapRoute("StudentAvailableClasses_GetClassForStudent",
"student/available/classes/{studentId}/{classTypeId}",
new { controller = "StudentCheckin", action = "GetByStudentAndClassType" });
routes.MapRoute("StudentAvailableClasses_Query",
"student/available/classes/query/{q}",
new { controller = "StudentCheckin", action = "Query" });
When I execute this url
student/available/classes/query/smith+john
MVC tries to run this route:
student/available/classes/{studentId}/{classTypeId}
If I reverse the order in which I register the Query route with the GetClassForStudent route, MVC resolves to the query route.
What is going on here, and how can I register these routes with MVC so that they all resolve correctly?
UPDATE
Wow, once again thank you to everyone here on stackoverflow! Based on everyone's responses, and in particular the answer by Beno, I now understand my issue, and was able to make it work!
From what I understand, I was not giving MVC enough information about the routes. It was matching the word 'query' into the {studentId} parameter. From Beno's answer I learned about parameter constraints. So now I am able to tell MVC to expect a Guid type in the {studentId} (and {customerId}) parameter.
Here is the code now.
//Student Checkin
routes.MapRoute("StudentAvailableClasses_GetAllForStudent",
"student/available/classes/{id}",
new {controller = "StudentCheckin", action = "GetById"},
new {id = new GuidConstraint()});
routes.MapRoute("StudentAvailableClasses_GetClassForStudent",
"student/available/classes/{studentId}/{classTypeId}",
new {controller = "StudentCheckin", action = "GetByStudentAndClassType"},
new {studentId = new GuidConstraint(), classTypeId = new GuidConstraint()});
routes.MapRoute("StudentAvailableClasses_Query",
"student/available/classes/query/{q}",
new { controller = "StudentCheckin", action = "Query" });
The class GuidConstraint I found from this stackoverflow question.
Thank you!
