Using DataSet Editor to Bind Objects for use in a DataReader
I love the data set editor for defining DataTables and DataRows. However, the SQL statements I need to run select many gigabytes of data and so their result sets cannot be stored in memory (DataSets).
I don't need to insert/update/delete data, and I don't need to access more than one row at a time. I simply want to leverage the .NET DataSet editor to bind C# classes to data sources. Thanks!

