Let's say I have a Person class with properties of Name, Address, ... and a custom collection People which is essentially a Generic.List(Of Person). I am using an xml document to store and retrieve the People collection. How do execute a SQL string that is created by the user against my business objects and return it as a DataSet? e.g. "SELECT Person.Name FROM Person WHERE Person.Name='John Doe'" Any direction or advice would be greatly appreciated. Of course my application is not as trivial as outlined
Read More...