-1
我們如何通過給定列的值來計算行數?按IEnumerable計數的組元素
我創建從數據表中的IEnumerable從存儲過程返回
DataSet ds = new DataSet(); // code to get table using sp IEnumerable<DataRow> Myrows = ds.Tables[0].AsEnumerable();
我的表返回數據,如
Id | Column1 | Column2 | Column3 | 1 | xCol1 | xCol2 | xCol3 | 2 | xCol1 | xyy | ser | 3 | xCol2 | 2324 | ser |
現在我想通過列1獲得的行數與組。所以,我的結果應該是
Count | Column | 2 | xCol1 | 1 | xCol2 |
可能重複[Howto:從IEnumerable中計算項目而沒有迭代?](http://stackoverflow.com/questions/168901/howto-count-the-items-from-a-ienumerablet-without -iterating ) –
ChrisF
2012-03-06 15:32:30
我認爲你問這個問題一樣的東西... http://stackoverflow.com/questions/1225710/linq-to-dataset-multiple-group-by-on-a-data-table – 2012-03-06 15:35:16
謝謝克里斯託弗。你是對的。我正在尋找你建議的相同的東西 – 2012-03-06 15:43:32