I would argue that _embedded_ is a better term for how the syntax feels at the moment. Currently: ``` csharp foreach (var item in from xItem in new[] {"One", "Two", "Three" } where xItem == "Two" select xItem) { Debug.WriteLine(item); } ``` Suggested: ``` csharp foreach (from item in new[] {"One", "Two", "Three" } where item == "Two" select item) { Debug.WriteLine(item.ToString()); } ```