Schotime @ January 22, 2009
.NET
|
Comments (1)
Back in the days of Classic ASP, when you had a one too many relationship displaying the data was pretty painful. You would do things like
var reference_number_old = "$##%@";
while (recordsExist)
{
[...]
Schotime @ March 18, 2008
.NET
|
Comments (11)
In my previous Linq post I discussed using Linq with Regular expressions and how much less code was needed. In this post we’ll again see how Linq can be used to speed up and simplify development.
There are many situations where you need to read data from a file into memory or a database. Lets consider [...]
Schotime @ March 10, 2008
.NET
|
Comments (5)
With Linq now standard in .NET 3.5, there is no reason why we shouldn’t use it. After all its full of features that can be used by any object that inherits the type IEnumberable. With such power at our fingertips, sorting, filtering, manipulation etc. etc. are available to us with fewer lines of code than [...]