LINQ - Get all items in a List within a List?

后端 未结 4 912
梦如初夏
梦如初夏 2021-02-18 16:28

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

4条回答
  •  青春惊慌失措
    2021-02-18 17:17

    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;
    

提交回复
热议问题