views:

625

answers:

4

What are the best resources to learn LAMBDA expressions? They still have me a bit confused and I don't use them much. Also LINQ has me a bit confused, since both things are more or less in the same boat, maybe you guys can offer some good LINQ resources too.

+3  A: 
Oscar Cabrero
This book is a sequel to "LINQ in Action". I recommend it to those claiming to be proficient in C#. They will think twice then.
vbocan
+3  A: 

Also take a look at LINQ in Action.

Scott Dorman
+1 for this one. It's the book that educated me on LINQ.
vbocan
+5  A: 

The section on lambda expressions in the C# programming guide is a good place to start (and it's free, before having to shell out money for a book):

http://msdn.microsoft.com/en-us/library/bb397687.aspx

casperOne
+1  A: 

101 LINQ Samples

Craz