使用DATATABLe.fill填充数据库后,在DATAGRIDVIEW中可以看到有数据,可是datatable.Rows.Count.ToString()的值为零,不明白为什么。下面是这部分的源码,请高人指导。            ReportSet.Tables["dt"].Clear();
            da.Fill(ReportSet, "dt");
            MessageBox.Show(dt.Rows.Count.ToString());
            bindingSource1.DataSource = ReportSet.Tables["dt"];
            dataGridView1.DataSource = bindingSource1;