I would like to break a “SELECT” SQL statement into its logical components. i.e. I would like to create an object like “SelectSqlStatement” which has a property called “Table”, “Where”, “OrderBy”, etc. The reason I want to do it is that I don’t want to manipulate a string but rather manipulate an object and serialize it back to a string.
Before I write one for .NET, I was wondering if there was one available. I did a search but didn’t see anything.
Just to name a few. What you are looking for is an ORM
*All links are what I could quickly find for VB.