Beginners Guide to LINQ - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T23:05:22Zhttp://stackoverflow.com/feeds/question/8050http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/8050/beginners-guide-to-linq17Beginners Guide to LINQGateKiller2008-08-11T18:19:48Z2009-09-22T19:26:11Z
<p>During the beta of Stack Overflow, I have seen quite a few questions about LINQ SQL but know nothing about it... it sounds very interesting.</p>
<p><strong>What is LINQ and how do I get started?</strong></p>
<p>Links guides or documentation a bonus :)</p>
<p><em>PS: I am a long time C# developer who daily uses Datatables and Parameterized SQL</em></p>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/8058#80581Answer by DannySmurf for Beginners Guide to LINQDannySmurf2008-08-11T18:23:55Z2008-08-11T18:23:55Z<p>Here you go. I started with ScottGu's explanation/examples and went from there:</p>
<p><a href="http://weblogs.asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx</a></p>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/8061#806120Answer by SitWalkStand for Beginners Guide to LINQSitWalkStand2008-08-11T18:28:12Z2008-08-11T18:28:12Z<p>LINQ stands for Language Integrated Query and is a set of extensions for .NET that allow you to query data the same way from code and isn't tied to a specific data source. You can use the same LINQ code for SQL Server, XML, objects, DataSets, and Entities.</p>
<p>Here is a good intro from <a href="http://weblogs.asp.net/scottgu/archive/2006/05/14/446412.aspx" rel="nofollow" title="The Subversion Book: Repository hooks">Scott Guthrie</a></p>
<p>This is a nice set of 101 <a href="http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx" rel="nofollow" title="Using Subversion hooks to send out build emails">LINQ Samples</a></p>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/8062#80626Answer by KP for Beginners Guide to LINQKP2008-08-11T18:28:19Z2008-08-11T18:33:40Z<ul>
<li>Start with everything <a href="http://weblogs.asp.net/scottgu/archive/2008/01/07/dynamic-linq-part-1-using-the-linq-dynamic-query-library.aspx" rel="nofollow" title="Cocoa Programming for Mac OSX">Scott Guthrie</a> has on linq</li>
<li>Get <a href="http://oreilly.com/catalog/9780596519247/" rel="nofollow" title="Using Subversion hooks to send out build emails">LINQ Pocket Reference</a>, which is an excerpt from <a href="http://oreilly.com/catalog/9780596527570/index.html" rel="nofollow">C# 3.0 in a Nutshell</a></li>
</ul>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/8072#80725Answer by urini for Beginners Guide to LINQurini2008-08-11T18:38:39Z2008-08-19T07:39:44Z<p>Here are a couple of good tutorials (video) from OakLeaf Systems:</p>
<p><a href="http://oakleafblog.blogspot.com/2007/04/two-new-linq-to-sql-video-segments-from.html" rel="nofollow">http://oakleafblog.blogspot.com/2007/04/two-new-linq-to-sql-video-segments-from.html</a>
<a href="http://oakleafblog.blogspot.com/2007/05/mike-taulty-posts-six-new-linq-to-xml.html" rel="nofollow">http://oakleafblog.blogspot.com/2007/05/mike-taulty-posts-six-new-linq-to-xml.html</a></p>
<p><strong>EDIT:</strong> I just ran into this great tool created by the author of C# in a Nutshell:
<a href="http://www.linqpad.net/" rel="nofollow">http://www.linqpad.net/</a>
It includes lots of great easy to follow samples.</p>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/8080#80809Answer by Mike for Beginners Guide to LINQMike2008-08-11T18:43:06Z2008-08-11T18:51:56Z<p>Two books you should consider for learning about LINQ, both from Manning:</p>
<ul>
<li><a href="http://www.manning.com/skeet" rel="nofollow">C# in Depth</a></li>
<li><a href="http://www.manning.com/marguerie" rel="nofollow">LINQ in Action</a></li>
</ul>
<p>The former was by far the better written, and taught me almost as much about LINQ in a single chapter than the latter did in a whole book. LINQ is built on a lot of foundation, and C# in Depth builds it up from the ground.</p>
<p>The second book is a whole lot better than nothing, and you will learn things specifically about LINQ that you won't learn in the first. But the first book will give you much better foundation, and puts up at least a token perspective instead of more or less blindly following the MS line. So, I'm recommending C# in Depth first and foremost for learning LINQ.</p>
<p>Mike</p>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/8081#80814Answer by Evan for Beginners Guide to LINQEvan2008-08-11T18:43:51Z2008-08-11T19:20:21Z<p>Linq is short for "Language integrated query." It's a set of language enhancements built into C# and VB. Basically, what you get is a bunch of standard query operators that can be applied to any IEnumerable of type T. There's a lot of different linq providers for specific types of data- for example, there's linq to xml, linq to entities, even linq to sharepoint. </p>
<p>To get started with linq, in all its many forms, I suggest the book <a href="http://rads.stackoverflow.com/amzn/click/1590597893" rel="nofollow" title="Cocoa Programming for Mac OSX">Pro Linq by Joseph C. Rattz.</a> It's an excellent overview of Linq. He takes a ground-up approach, first describing all the language features (like Lambda Expressions and Expression Trees) that Linq is built on, and then moving on to some standard linq provider implementations.</p>
<p>Additionally, here's a pretty good MSDN article describing Linq: <a href="http://msdn.microsoft.com/en-us/library/bb308959.aspx" rel="nofollow" title="Using Subversion hooks to send out build emails">LINQ: .NET Language-Integrated Query</a></p>
<p>Now, Linq to Sql is a linq provider written specifically for SQL Server. Included in this provider is an OR/M, that gives you some handy-dandy functionality (like typing out all your sql tables, so you get a robust design-time view of your database schema.) It's totally awesome, and for me, has greatly speed up development time when working with a sql database.
The book I recommended above also has a great section about using Linq To Sql. Also,
here's a good "beginner's guide" article from MSDN: <a href="http://msdn.microsoft.com/en-us/library/bb425822.aspx#linqtosql_topic1" rel="nofollow">Linq To SQL: .NET Language-Integrated Query for Relational Data</a></p>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/8084#80841Answer by Keith for Beginners Guide to LINQKeith2008-08-11T18:46:50Z2008-08-11T18:46:50Z<p>I think this book:</p>
<p><strong><a href="http://www.manning.com/skeet/" rel="nofollow">C# in Depth</a></strong></p>
<p>By Jon Skeet is an excellent programmers' guide that matches your exact needs (moving from earlier C# to C#3.5). </p>
<p>Also if you order it you get the electronic copy too - something more publishers should do (excellent for both Kindles and searching).</p>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/10791#107911Answer by Eran Kampf for Beginners Guide to LINQEran Kampf2008-08-14T07:59:30Z2008-08-14T07:59:30Z<p>A bit old but still relevant:
<a href="http://www.developerzen.com/2007/09/17/introduction-to-linq/" rel="nofollow">http://www.developerzen.com/2007/09/17/introduction-to-linq/</a></p>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/10792#107926Answer by Jon Galloway for Beginners Guide to LINQJon Galloway2008-08-14T08:03:12Z2008-08-14T08:06:52Z<p>I recommend the <a href="http://www.hookedonlinq.com" rel="nofollow" title="pgpool-II">Hooked On LINQ</a> wiki. They've got some <a href="http://www.hookedonlinq.com/LINQOverview.ashx" rel="nofollow">great introductory info</a>, as well as more in depth info and samples on all of the operators.</p>
<p>I listed a lot of LINQ references in the show notes for <a href="http://herdingcode.com/?p=27" rel="nofollow">Herding Code Episode 10 (on LINQ)</a>. One of my favorites is <a href="http://msdn.microsoft.com/en-us/magazine/cc163400.aspx" rel="nofollow">an MSDN Magazine article which explains how LINQ works</a> from a framework perspective in a way which really helped me understand how it works.</p>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/10795#107951Answer by pbh101 for Beginners Guide to LINQpbh1012008-08-14T08:09:24Z2008-08-14T08:09:24Z<p>From MSDN, here are some papers, written by Anders and others:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/bb308959.aspx" rel="nofollow" title="pgpool-II">LINQ: .NET Language-Integrated Query</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/bb425822.aspx" rel="nofollow">LINQ to SQL: .NET Language-Integrated Query for Relational Data</a></li>
</ul>
<p>PS after writing this, I see someone has already linked to these, but buried inside a paragraph, so I'll keep them pulled out here in list form as well.</p>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/15882#158822Answer by Davide Vosti for Beginners Guide to LINQDavide Vosti2008-08-19T08:08:55Z2008-08-19T08:08:55Z<p>To practice without the need to write wrap code just to execute linq-queries you could use
linqpad.net</p>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/140356#1403561Answer by TheoJones for Beginners Guide to LINQTheoJones2008-09-26T15:48:53Z2008-09-26T15:48:53Z<p>There's a VB.Net version of the 101 Code Samples page too - </p>
<p><a href="http://msdn.microsoft.com/en-us/vbasic/bb688088.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/vbasic/bb688088.aspx</a></p>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/171845#1718454Answer by Slace for Beginners Guide to LINQSlace2008-10-05T11:40:16Z2008-10-05T11:40:16Z<p>I'd strongly suggest you have a play around with LINQPad (<a href="http://www.linqpad.net" rel="nofollow">http://www.linqpad.net</a>), it's a free tool which allows (umong others things) you to connect to a database server and query it using LINQ to SQL. It takes the pain out of having to set up Console Applications to do the playing.</p>
<p>I cover some of the other stuff on my blog (using LINQPad for non-LINQ code testing) and link off to a really good video on LINQPad: <a href="http://www.aaron-powell.com/blog.aspx?id=1246" rel="nofollow">http://www.aaron-powell.com/blog.aspx?id=1246</a></p>
http://stackoverflow.com/questions/8050/beginners-guide-to-linq/1462098#14620980Answer by Keith Elder for Beginners Guide to LINQKeith Elder2009-09-22T19:26:11Z2009-09-22T19:26:11Z<p>There is a podcast here (shameless plug) that covers LINQ from one of the authors of LINQ in Action.</p>
<p><a href="http://deepfriedbytes.com/podcast/episode-14-linq-ing-the-future-of-development-with-jim-wooley/" rel="nofollow">Deep Fried Bytes - Episode 14: LINQ’ing the Future of Development with Jim Wooley</a></p>
<p>Lots of great stuff in that show that may also help you out.</p>