Is there any way to write LINQ (or with procedural style) query, that can select all children with one SQL query? I have entity:
I have a ID, so I want to select Comment with ID and all its children with subchildren. Example:
If ID == 1 then I want list of 1,2,3,4,5,6. |