Omer van Kloeten's .NET Zen

Programming is life, the rest is mere details

News

Note: This blog has moved to omervk.wordpress.com.

Omer van Kloeten's Facebook profile

Omer has been professionally developing applications over the past 8 years, both at the IDF’s IT corps and later at the Sela Technology Center, but has had the programming bug ever since he can remember himself.
As a senior developer at NuConomy, a leading web analytics and advertising startup, he leads a wide range of technologies for its flagship products.

Get Firefox


powered by Dapper 

.NET Resources

Articles :: CodeDom

Articles :: nGineer

Culture

Projects

August 2005 - Posts

Generic List Methods Missing From Typed DataSets

I've made a suggestion in LadyBug regarding Typed DataSets in Visual Studio 2005. It might just be too late for this, though, but at least it's in the system.

Problem Statement: It seems as if there is no regard for the new features of .NET 2.0 in the creation of Typed DataSets.
Methods like Find, FindAll, ForEach, etc. exist in the generic list and should be implemented per typed DataTable.
I'm certain there are many more useful methods that can benefit from the new features in 2.0.

Proposed Solution: Examples:
public DataTable1Row[] FindAll(Predicate match);
public DataTable1Row Find(Predicate match);

More Posts