News

Because I almost never write long linq queries in Linq to Objects without just converting to the pipeline-esque (or fluent if you prefer) style via extensions methods.
A lot of the time, when I write a LINQ statement, I follow it with a For ... Each loop that processes each item in the query: Dim db As New NorthwindModel Dim ords = From o In db.Orders Where ...
The IQueryable interface pertaining to the System.Linq namespace extends the IEnumerable interface and can be used to query data from data sources that implement IQueryable providers.
As I mentioned Monday and in my Visual Studio 2008 review, I've been struggling with the finer points of LINQ queries. In a talkback comment to my review, "CSharper" pointed me at one solution to ...
So I'm playing around with Visual Studio 2010 while we think about moving our projects to it, and I was trying to make a new Silverlight 4 app, but when I ...