I am trying to get something like the following to work:
_dbmsParentSections = FactoryTools.Factory.PdfSections .Include(x => x.Ch
This will never gona work. EF include is try to understand and translate everything to SQL, but you want to much from this. Load all entities without sorting and .ToList()-ing, and write an extension method for IEnumerable to get an ordered result.