How many times haven't you written procedural code to loop through lists to do sorting and filtering of items like this? List < Position > positions = GetPositions(); // Sort the list and filter SortedList < string , Position > openPositions
Read More...
During the past week, I have been converting a few applications to using Visual Studio 2008 and LINQ. It’s nice to be able to remove all of the SQL query strings from my code and replace them with nice and clean LINQ syntax. In the beginning, I was a
Read More...