vote up 2 vote down star
3

I have read my first book on c# and feel completely clueless about LINQ. Please suggest reader-friendly linq material.

Thanks

flag
Which book did you read? – deadbeef Apr 29 at 11:03
Accelerated C# and now I am on C# in depth.. – ultraman Apr 29 at 13:01

7 Answers

vote up 1 vote down check

LINQ in Action has been recommnded to me by several people.

link|flag
vote up 2 vote down

Download LINQPad and play with it. It comes with many free samples.

link|flag
vote up 1 vote down

As a reference guide Pro Linq is IMO the best one.

Once you are more experienced and want to know more of the internals Programming Linq is the book you want.

Also there are some great blogs out there, Matt Warrens, and Bart De Smets are wonderfull resources for advanced Linq topics.

But the absolute best place to start as a beginner is the 101 linq samples site, and actually try them out.

link|flag
vote up 1 vote down

Charlie Calvert from Microsoft wrote a great blog post here which gives you a good insight into coding with LINQ.

I hope that helps.

Ian.

link|flag
+1 thanks for the linq (groan) – Ian Quigley May 8 at 7:20
vote up 0 vote down

I highly recommend Jon Skeet's "C# In Depth". He walks you through the updates .net 2 and 3 which you need to understand to fully appreciate what's going on with Linq. You may also have seen his name around here :)

link|flag
Jon's book is great, but I think he deferes to "LINQ in Action" for more details on LINQ. – deadbeef Apr 29 at 11:03
I defer to LINQ in Action when it comes to details for LINQ to SQL and similar providers. I think I give a fairly good description of the translation of query expressions to "normal" code, and the LINQ to Objects operators. – Jon Skeet May 3 at 18:59
I found that once I had understood the material in Jon's book the "Link In Action" book was a very quick read -- more of reference than anything else. Jon's book had explained the magic. :) – Rob Scott Jun 4 at 12:55
vote up 0 vote down

Microsoft created LINQ. So why not start with the Microsoft documentation about it?

link|flag
vote up 0 vote down

And I didn't really use this tastes-like-SQL(tm) syntax and use good old mix of methods and lambdas like

list.Where(n => n.Something == searchingFor)
    .Select(n => new { Whatever.... })
    .OrderBy(xxx)

Works the same, uses same features, but look less ackward to me. And for the guide I use Intellisense.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.