LINQ to Objects (and Everything)
The most hyped new feature in Visual Studio 2008 is LINQ, which stands for Language INtegrated Queries. It's awesome, and you'll be using it to talk to SQL, Objects and everything in between. Specifically to LINQ to Objects, this mechanism has the ability to query anything that implements IEnumerable<T>, which is a nice feature because it allows for creating complex logic to search collections by.
Blogs/Articles
Have fun!
Revision number 4, Wednesday, July 02, 2008 6:08:54 PM by bmains
You must Login to comment.
Revision #2
Sat, Oct 11, 2008 8:23 AM
by
|
LINQ to XML
It seems we can LINQ to everything these days. Here's some resources that will get you started using LINQ with XML. Introduction .NET Language-Integrated Query for XML Data- This MSDN introduction is 44 pages in fairly easy to read detail on LINQ to XML
|
Revision #3
Sat, Oct 11, 2008 8:24 AM
by
|
LINQ
From MSDN: "The LINQ Project is a codename for a set of extensions to the .NET Framework that encompass language-integrated query, set, and transform operations. It extends C# and Visual Basic with native language syntax for queries and provides class
|
Revision #4
Mon, Feb 1, 2010 5:56 PM
by
|
LINQ to SQL
Start with listening to Anders talk about LINQ in Anders Hejlsberg on LINQ and Functional Programming this video and reading the MSDN Introduction to LINQ. If that's too long, perhaps the 5 Minute Intro is more your speed. There's also a good Channel
|