tags:

views:

403

answers:

1

What is the best advanced LINQ book? I'd like a book that covers in depths the inner workings of LINQ including lambdas, expression trees, etc...

+4  A: 
  • C# In Depth
  • LINQ In Action
  • Essential LINQ

Those are the best I have found thus far.

Aaron Fischer
LINQ in action is an excellent book - highly recommended!
marc_s
Thank you. I have ordered LINQ in Action.
Sly
To me, this is an entry level book, not an advanced level book. There is only one chapter on LINQ Extensibility and it is not in detail. I would not recommend it to someone who already use LINQ on a daily basis.
Sly
@Sly if you feel that way the next best thing to look at would be Jon Skeet's book C# In Depth. Its not a Linq book but it may discuss Linq in the detail you are looking for.
Aaron Fischer