How to get started learning LINQ in C#.net.
5 Answers
LINQ is a pretty big subject.
I would start with Hooked On LINQ
The way I learned Linq was from the book Linq in Action

- 72,212
- 42
- 129
- 156
Get LinqPad!
Its a great way to learn LINQ, supports LINQ to SQL, LINQ to Objects and LINQ to XML, and it comes preloaded with 200+ examples from the book C# 3.0 in a Nutshell.

- 807,428
- 183
- 922
- 838
-
Good to know. Very nice. I wish it could generate Linq from a sql statement (perhaps it can and I don't know how). – Bill Martin Mar 03 '09 at 19:00
-
@asp316: LinqPad can't, but you can!, you only have to learn the syntax, and have some practice... – Christian C. Salvadó Mar 03 '09 at 19:12
The videos at http://www.asp.net/learn/ are great. They have an entire section on Linq that will take you from "new solution" to fully working examples.

- 100,552
- 23
- 116
- 167
I'm a long-time SQL developer, and I found that all I needed for the transition to learning LINQ was 101 LINQ Samples off of msdn. All the basics are there, if you understand the generalities of a query-based syntax already. I don't know what your existing expertise is, so thought I'd throw that out there.

- 3,057
- 3
- 27
- 25