Given this piece of code:
var loadAll =
Observable.ForkJoin(
service1.FindBooksAsObservable().Select(s => s),
service2.FindBooksAsObservable().Select(s => s),
service3.FindBooksAsObservable().Select(s => s)
);
loadAll.Subscribe(
result =>
{
var aggregatedListOfBooks = result.SelectMany(b => b);
});
As you can see, the problem is each FindBooksAsObservable() method returns an IObservable<IEnumerable<Book>>, thus the result variable in the Subscribe() is an Array of IEnumerable<Book>.
Is there any other way of aggregating the result of the ForkJoin()? I was hoping to use something like Merge() along with the ForkJoin.