I have never done anything with LINQ before, however I have experience with MySQL.
I am on page 232 of Microsoft® ASP.NET 4 Step by Step and the book has started to talk about LINQ which is cool.
The book has instructed my to type my first LINQ query which I have, however it has resulted in 19 errors from Visual Studio, because the where, orderby and select commands are not recognised.
Below is the code from the book:

Below is my code (in the form of a screenshot so you can see what Visual Studio doesn’t like):

What am I doing wrong?
Thankyou
In your Linq query, the TechnologyDescriptor tag wih the “<>” is barfing. What you need to do is specify a named variable instance for an individual item in the technologyDescriptor list. For example:
You can think of this query as similar to a foreach loop that is looping over technologyDesciptor list and “td” being the individual record for each loop