I'm still trying to learn LINQ, though it's going more smoothly now that I've started to use it daily at work. I still don't feel good at it, though. Does anyone have any challenging practice exercises or puzzles I can use as a code-kata to improve my skills?

I'll leave this as community wiki, so maybe it can grow to a community list.

link|improve this question
feedback

closed as not constructive by casperOne Dec 10 '11 at 5:59

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

5 Answers

If you have not discovered http://www.linqpad.net/ it lets you practice linq in a lightweight way, as well as having some inbuilt examples from C# 3.0 in a nutshell book.

link|improve this answer
feedback

101 Linq Samples is a good one for refference. Not a puzzle though

link|improve this answer
feedback

Puzzle:

Do a full outer join in LINQ.

link|improve this answer
feedback

I know the 1st 2 questions at Project Euler is 'LINQ' friendly, I never did any more, but it should be fun either way :)

link|improve this answer
feedback

I've been finding "foreach's" in existing code and attempting to linq'ify them. Many times things have been different enough for me to learn new concepts or at least if they're similar I get to feel more confident that my Linq skills are getting better.

link|improve this answer
feedback

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