I have an object Dictionary<int, Dictionary<int, Foo> > on one side, and a function taking a IEnumerable<IEnumerable<Foo> > on the other side.
What is the simpliest way to transform from one to the other in Linq, I can’t think of something nice, all my tries ended with foreach loop…
This should do it: