Hi,
Im computing data from database (~130 000 000 rows).
Because of big amount of rows I select 1 mln compute them save results then select another 1 mln and so on.
I use select .. orderby .. skip m... take n...ToList()
because I want to have this objects in memory.
When I skip 1 mln then 2 mln then 3 mln ... then lets say 6 mln its quite ok but then suddenly qery takes very long.
Have you got the same problem ?
Is there any way I can make it work faster ?
Thanks for help, Bye