|
|
Browse by Tags
All Tags » C# » query syntax (RSS)
-
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 ...
|
|
|