LINQ:
Language-Integrated Query (LINQ) is a groundbreaking innovation in Visual Studio 2008 and the .NET Framework version 3.5 that bridges the gap between the world of objects and the world of data.
Traditionally, queries against data are expressed as simple strings without type checking at compile time or IntelliSense support. Furthermore, you have to learn a different query language for each type of data source: SQL databases, XML documents, various Web services, and so on. LINQ makes a query a first-class language construct in C# and Visual Basic. You write queries against strongly typed collections of objects by using language keywords and familiar operators. The following illustration shows a partially-completed LINQ query against a SQL Server database in C# with full type checking and IntelliSense support.
LINQ Resources :
- http://linqdev.com/PublicPortal/ (Check for very good video Tutorial )
- http://www.hookedonlinq.com/MainPage.ashx ( Developers’ Wiki for .NET Language Integrated Query )
- http://www.theserverside.net/tt/articles/showarticle.tss?id=CsharpLINQLearningGuide2007 ( C# 3.0/LINQ Learning Guide )
- http://linqinaction.net/ – Learn about LINQ, LINQ to SQL (DLINQ) and LINQ to XML (XLINQ)
- http://www.danielmoth.com/Blog/2007/02/linq-resources.html
- http://blogs.msdn.com/zainnab/attachment/8343938.ashx (Programs and Tutorials)
- http://blogs.msdn.com/zainnab/pages/visual-studio-2008-framework-3-5-learning-resources-page.aspx
- http://go.microsoft.com/fwlink/?LinkId=71829 (The Linq Project)
- http://forums.microsoft.com/msdn/showforum.aspx?forumid=123&siteid=1 (LINQ forum)
- http://msdn.microsoft.com/en-us/library/bb308961.aspx (linq Whitepapers)
- http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2007/05/09/9317.aspx (LINQ Videos)
- http://cid-1f72da7294089597.skydrive.live.com/browse.aspx/Public/LINQ (LINQ files to download)
- http://weblogs.asp.net/scottgu/archive/2007/07/31/linq-to-sql-debug-visualizer.aspx ( LINQ to SQL Debug Visualizer )
- http://msdn.microsoft.com/en-us/vbasic/bb466226.aspx#linq (How do I videos)
- http://blogs.msdn.com/charlie/archive/2008/11/23/linq-reference-documentation.aspx ( LINQ Reference Documentation )
- http://oakleafblog.blogspot.com/2007/03/third-party-linq-providers.html ( Third-Party LINQ Providers )
- http://updates.zdnet.com/tags/linq.html (Resources by ZDNet)
- http://www.linqhelp.com/ ( good help site )
- http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx (101 LINQ Samples)
- http://www.thedatafarm.com/blog/2007/10/02/ResourcesForLINQTalkAtSanDiegoNET.aspx (Julie Lerman Resources for LINQ talk at San Diego .NET )
ScottGu’s Blog
Step by Step…
Introducing LINQ – Part 1
Introducing LINQ – Part 2
Introducing LINQ – Part 3
Introducing LINQ – Part 4
Introducing LINQ – Part 5
Happy Coding !!!

