Category Archives: Linq

Parallel LINQ (PLINQ)

LINQ is getting an upgrade with .Net 4.0. Features are being added that allow us to easily execute queries in parallel. It gives us another reason to drop those odious for and foreach statements and use LINQ. .Net 4.0 introduces … Continue reading

Posted in .Net, C#, Linq | Comments Off on Parallel LINQ (PLINQ)

Convert to Linq!

While writing my last post, I was looking at the code to see if it was really something I wanted to post for general scrutiny and saw that I could use Linq to do the same thing. Here’s the old … Continue reading

Posted in .Net, Linq | Comments Off on Convert to Linq!

When to use Linq: for/foreach

Many people around the office love Linq, but I haven’t used it much and hadn’t heard about it until I started here. I have written a few Linq queries (Linq to Objects) but don’t use them extensively in my coding. … Continue reading

Posted in C#, Linq | 1 Comment