Getting Started With C#:
*
Creating a new query using LinqPad
LinqPad is a great tool that allows you to learn and test features of .Net languages (C#, F# and VB.Net.)
string hw = "Hello World";
hw.Dump(); //or Console.WriteLine(hw);
Notes:
LINQ to SQL or Linq to Entities you can inspect the SQL that’s being generated which is another great way to learn about LINQ.