Introduction This post contains the nomenclature that I used in the XLinq documentation for the May 2006 CTP. Note that this is not the official list. It may change in the future. query expression This is the term for what has been called "query comprehension" in the past. An example of a query expression is: var z = from c in contacts.Elements() where (string)c.Element("address").Element("state") == "WA" select (string)c.Element("name"); expression When you use the "explicit dot notation", it is
Read More...