There is a hierarchical query support in a popular EF extensions library: https://entityframework-extensions.net/to-self-hierarchy-list.
I'm curious how does it work under the hood? Is it getting handled by SQL server, meaning that the query is translated to CTE (common table expression)?
Disclaimer: I'm the owner of Entity Framework Extensions
You got it right, we indeed use a CTE in the generated SQL.
Here is how looks the SQL template:
So a query like this one:
Will generate the following SQL:
Nothing "special" here, just using one great feature of the CTE to make it works.