I\'m currently working my way through the learning curve that is LINQ and I could really use some assistance. I don\'t know if what I want is possible, but if I had to wager, I
In addition to tbischel's answer, the query expression version of what you're going for is below.
var indexes = from TableInfo tab in _tables from index in tab.Indexes select index;