-1

How to get started learning LINQ in C#.net.

exebook
  • 32,014
  • 33
  • 141
  • 226
Sarathy
  • 442
  • 2
  • 9
  • 20

5 Answers5

6

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

David Basarab
  • 72,212
  • 42
  • 129
  • 156
4

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.

Christian C. Salvadó
  • 807,428
  • 183
  • 922
  • 838
1

The MSDN Getting Started With LINQ Page was helpful to me.

Meta-Knight
  • 17,626
  • 1
  • 48
  • 58
0

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.

http://www.asp.net/learn/linq-videos/

Robin Day
  • 100,552
  • 23
  • 116
  • 167
0

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.

Chris McElligott Park
  • 3,057
  • 3
  • 27
  • 25