Beginners Guide to LINQ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T23:05:22Z http://stackoverflow.com/feeds/question/8050 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/8050/beginners-guide-to-linq 17 Beginners Guide to LINQ GateKiller 2008-08-11T18:19:48Z 2009-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#8058 1 Answer by DannySmurf for Beginners Guide to LINQ DannySmurf 2008-08-11T18:23:55Z 2008-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#8061 20 Answer by SitWalkStand for Beginners Guide to LINQ SitWalkStand 2008-08-11T18:28:12Z 2008-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#8062 6 Answer by KP for Beginners Guide to LINQ KP 2008-08-11T18:28:19Z 2008-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#8072 5 Answer by urini for Beginners Guide to LINQ urini 2008-08-11T18:38:39Z 2008-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#8080 9 Answer by Mike for Beginners Guide to LINQ Mike 2008-08-11T18:43:06Z 2008-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#8081 4 Answer by Evan for Beginners Guide to LINQ Evan 2008-08-11T18:43:51Z 2008-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#8084 1 Answer by Keith for Beginners Guide to LINQ Keith 2008-08-11T18:46:50Z 2008-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#10791 1 Answer by Eran Kampf for Beginners Guide to LINQ Eran Kampf 2008-08-14T07:59:30Z 2008-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#10792 6 Answer by Jon Galloway for Beginners Guide to LINQ Jon Galloway 2008-08-14T08:03:12Z 2008-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#10795 1 Answer by pbh101 for Beginners Guide to LINQ pbh101 2008-08-14T08:09:24Z 2008-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#15882 2 Answer by Davide Vosti for Beginners Guide to LINQ Davide Vosti 2008-08-19T08:08:55Z 2008-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#140356 1 Answer by TheoJones for Beginners Guide to LINQ TheoJones 2008-09-26T15:48:53Z 2008-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#171845 4 Answer by Slace for Beginners Guide to LINQ Slace 2008-10-05T11:40:16Z 2008-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#1462098 0 Answer by Keith Elder for Beginners Guide to LINQ Keith Elder 2009-09-22T19:26:11Z 2009-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>