Hi, is it possible to route an hiearchical path to map an relation from the database as follows:
Lets say I have an tuple/entity "page" with an m-t-m relation to a "page" (it selfe) and I want to be able to combine the slug-value of each page to find an appropriate page, like so:
mydomain.com/firstpage/secondpage/thirdpage
where firstpage, secondpage and thirdpage is of type "page" and the third page references to the second page etc.
How would you implement this with ASP.Net MVC Routing?