tags:

views:

287

answers:

5
+1  Q: 

LINQ using C#.net

Can any one guide me to learn LINQ in C#.net i am new to this concept

A: 

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
+6  A: 

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
+4  A: 

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.

CMS
LinqPad helps tremendously
Eric King
Good to know. Very nice. I wish it could generate Linq from a sql statement (perhaps it can and I don't know how).
asp316
@asp316: LinqPad can't, but you can!, you only have to learn the syntax, and have some practice...
CMS
+1  A: 

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

Meta-Knight
A: 

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.

x4000