Roslyn will be released in the not too distant future. Read up on the new features that will be included.
Enumerating Files and Directories in VB 2010
Learn how to enumerate the files and folders on a computer with LINQ, managing access exceptions along the way.
An Extensive Examination of LINQ: Querying and Searching XML Documents Using LINQ to XML
This article, by Scott Mitchell, is part on an ongoing series of articles that examines LINQ. This installment looks at querying and searching XML documents using the LINQ to XML provider.
Creating an XML File with VB 2010
Use Functional Composition, LINQ to XML, and schema inference to generate XML and XML Schema documents in VB2010.
Understanding LINQ's Deferred Execution
By default LINQ uses deferred query execution. This means you can access the results, change the data and use the same query again. Using Visual Studio 2010, beta 1 and the .NET Framework 4.0 we'll see how to use this to our advantage.
Using LINQ with Dynamic Where Clauses
Do you need to create Dynamic Where Clauses at runtime? No need to use string concatenation with SQL, LINQ is fully capable of performing the same task.