I’m writing a staff search application that queries two different Active Directories (one over a slow(ish) link) and combines the results into a List<userSummary> object which I then sort.
What is the best way to fire off these request asynchronously so that they are both of retrieving the results at the same time ready to combine once both queries have completed? As both ADs contains many users this would speed up some of my wildcard searches no end.
Thanks,
Keeney
Check out the AsyncController.