Linq to DataSet Group By Sum
DataSet ds = new DataSet(); DataTable dt = new DataTable(); DataColumn col1 = new DataColumn("NAME", typeof(string)); DataColumn col2 = new DataColumn("VALUE", typeof(int)); dt.Columns.Add(col1); dt.Columns.Add(col2); dt.Rows.Add("A", 1); dt.Rows.Add("A", 2); dt.Rows.Add("B", 3); dt.Rows.Add("B", 4); dt.Rows.Add("B", 5); dt.Rows.Add("C", 1); dt.Rows.Add("C", 2); ds.Tables.Add(dt); // 여기부터 LINQ 시..
C#/LINQ
2011. 11. 11. 15:11