C# 中的 SelectMany
是一個 LINQ 方法,它主要用于將多個集合或可迭代對象中的元素合并到一個序列中。以下是一些適合使用 SelectMany
的需求:
SelectMany
將它們扁平化為一個單一的集合。List<List<int>> nestedLists = new List<List<int>> {
new List<int> { 1, 2, 3 },
new List<int> { 4, 5, 6 },
new List<int> { 7, 8, 9 }
};
List<int> flattenedList = nestedLists.SelectMany(list => list).ToList();
// 輸出: 1, 2, 3, 4, 5, 6, 7, 8, 9
SelectMany
可以幫助你實現這一點。IEnumerable<int> sequence1 = new[] { 1, 2, 3 };
IEnumerable<int> sequence2 = new[] { 4, 5, 6 };
IEnumerable<int> sequence3 = new[] { 7, 8, 9 };
IEnumerable<int> combinedSequence = sequence1.SelectMany(x => sequence2).SelectMany(y => sequence3);
// 輸出: 1, 2, 3, 4, 5, 6, 7, 8, 9
注意:上面的示例實際上使用了 SelectMany
的嵌套形式,但核心思想是將多個序列連接成一個。
3. 將多個源合并為一個查詢:當你有多個數據源,并且想要對它們執行一個統一的查詢操作時,可以使用 SelectMany
將它們組合成一個查詢。
var query1 = from x in context.Table1 select x;
var query2 = from y in context.Table2 select y;
var combinedQuery = query1.SelectMany(x => query2.Where(y => y.SomeCondition));
SelectMany
也可以與異步操作一起使用,特別是當你想要將多個異步操作的結果合并到一個序列中時。public async Task<IEnumerable<int>> GetItemsAsync()
{
var item1 = await GetItemAsync1();
var item2 = await GetItemAsync2();
var item3 = await GetItemAsync3();
return item1.SelectMany(i => item2.Where(j => j == i)).SelectMany(i => item3.Where(k => k == i));
}
需要注意的是,在使用異步操作時,SelectMany
會等待每個異步操作完成后再繼續執行下一個操作。這可能會導致性能問題,特別是在處理大量數據或高延遲的操作時。在這種情況下,你可能需要考慮使用其他方法,如 Parallel.ForEach
或 Task.WhenAll
。