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 customers
where c.City = "London"
select c.CompanyName;
In that case you use a special syntax of the language that is converted by the compiler into extension methods calls of a LINQ class. That query syntax start with a from and ends with either a select or group clau. When you use the direct call to extension methods, you can end the query with any operator.
I hope it is more clear now, however write us if you still have some doubt.
Marco