Write an example LINQ (preferably using LINQ to SharePoint) query on the whiteboard
Sigiloso
// Query for customers from London var londonCustomers = from customer in Customers where customer.City == "London" select customer; Notice how the select statement appears at the bottom of the query. I don't like this syntax, but that is one way it differs from SQL.