How can I convert a DataSet to a DataReader?
You can use the following code to change dataset to DataReader:
DataReader
DataTableReader rd = ds.Tables[0].CreateDataReader();