All Tags »
query syntax »
C# »
query expressions (RSS)
Sorry, but there are no more tags available to filter with.
-
Hi Rickee,
thanks for your message!
The examples on page 87 makes direct calls to LINQ operators through the syntax of extension methods. The statement on page 74 refers only to query expressions in C#, which are written with the syntax:
from c in customerswhere c.City = ''London''select c.CompanyName;
In that case you use a special syntax of ...