The way I do it :
foreach (YourClass something in YourObject.SelectMany(x => x.Nested).SelectMany(x => x.MoreNesting)) {
// Do Stuff Here
}
Probably not the best way to do it or whatever, it's just the clearest way for me, while avoiding the triple nesting look I don't quite like.