With the new MVC Attribute routing, I know you can assign multiple Route attributes to a single ActionResult, but I am looking for a way to do the
Route
ActionResult
Running a bunch of tests I found out that I can just add 3 Route attributes to the controller level and it works the way I want.
Edit: a better way to do it I found was using the regex match method
[RoutePrefix("{Type:regex(Games|Cinema|Books)}/{SectionRoute}/Character/")]