When writing a query using C# LINQ syntax, is there a way to use the Queryable.SelectMany method from the keyword syntax?
For
string[] text = { \"Al
Yes, you just repeat the from ... in clause:
var words = from str in text from word in str.Split(' ') select word;