I am trying to get the number of rows that were returned by iterating the reader. But I always get 1 when I run this code? Did I screw up something in this?
DataTable dt = new DataTable(); dt.Load(reader); int numRows= dt.Rows.Count;