Tim Laughlin's Everything VB.NET Blog


Browse by Tags

All Tags » .net 2.0 (RSS)
Select Distinct on Datatable
I was trying to select some distinct rows from a DataSet datatable. After consulting Google and finding very little I finally found Erik Porter's blog entry . Which a great resource if you are using .NET 1.0 or .NET 1.1 which makes sense since he...
Posted: Oct 31 2007, 12:37 PM by tlaughlin | with no comments
Filed under: ,
Nullable Generic Structure
I discovered a small gem within the .net 2.0 framework, system.nullable. This structure takes a parameter of the underlying data type you want to use. So for example you can now set a integer to nothing rather then setting it some value and trying to...