This is the second step of a question explained here: EF 4.1 code-first: How to load related data (parent-child-grandchild)?. With @Slauma\'s guidance, I have successfully
Have you try following?
... Select(from ch in c.children orderby ch.property desending select ch) ...