EFC -> Nested Property Sorting
So I have a Queryable:
After this I'm using this:
(ToSort = LaatsteStoringActie.Omschrijving) <- Nested Property which is not available from getting the Storingen, only available through the select because it needs the StoringActies list to retrieve the last StoringActie
Now SQL Profiler shows this:
Which causes it to take ages because it goes through every "Creatiedatum" to get the last and "Omschrijving" to get it ordered
Do any of you have advice on this? If I don't use a nested property in the ToSort it works instantly, but if I use a nested property, it takes 20-30 seconds to load.
0 Replies