tags:

views:

4314

answers:

8

I have just finished reading "LINQ in Action" which I have found to be a great resource. What are some other resources available?

+6  A: 

101 LINQ Samples is fantastic and seriously helped me learn LINQ. Keep in mind some of the stuff is out-dated; the folding stuff has been moved to .aggregate().

kronoz
+1  A: 

"Pro LINQ: Language Integrated Query in C# 2008" by Joseph C. Rattz Jr (published by Apress) is good.

Simon Forrest
+1  A: 

A good concise guide to Linq is "Linq Pocket Reference", by Joseph Albahari, O'Reilly, 2008, (ISBN-13: 978-0-59-651924-7).

Although it's a pocket reference, it still seems to cover the whole Linq "landscape" well, including querying fundamentals, Linq to SQL, Linq to XML etc. Great for finding answers quickly.

Ash
+2  A: 

I'm writing a series on my blog about solving Project Euler with C#3.0: you'll find lots of practical examples with LINQ there.

Samuel Jack
+2  A: 

Here are a couple of very good series from The Visual Basic Team blog:

Converting SQL to LINQ
This goes through specific SQL constructs (FROM, GROUP BY, UNION, etc.) and how to represent them in LINQ to SQL.

LINQ Cookbook
This is a grab bag of more unique (not to say quirky, in some cases) techniques with LINQ.

Kyralessa
+5  A: 

ScottGu's blog has some great articles about using LINQ. He does some of the best walkthroughs of new .Net technologies.

Here's the series on LINQ to SQL he did:

Adam Lassek
Can you recommend one (or more) article(s) in particular?
Peter Mortensen
Sure, see above.
Adam Lassek
+1  A: 

Hooked on linq is a pretty good reference site with some examples.

Sigh