เมื่อเขียนแบบสอบถามโดยใช้ไวยากรณ์ C # LINQ มีวิธีใช้ Queryable.SelectMany จากไวยากรณ์คำหลักหรือไม่
สำหรับ
string[] text = { "Albert was here",
"Burke slept late",
"Connor is happy" };
ใช้วิธีการที่คล่องแคล่วฉันสามารถสอบถามได้
var tokens = text.SelectMany(s => s.Split(' '));
มีรูปแบบการสืบค้นที่คล้ายกับ
var tokens = from x in text selectmany s.Split(' ')