Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Efficient DataTable Group By

I would like to perform an aggregate query on a DataTable to create another DataTable. I cannot alter the SQL being used to create the initial DataTable.

Original DataTable: (everything is an int)

TeamID | MemberID
-------|-----------
1      | 1
1      | 2
1      | 3
2      | 4
2      | 5

Desired result:

TeamID | MemberIDCount
-------|--------------
1      | 3
2      | 2

If it were SQL I could just do

Select TeamID, Count(*) From Table Group By TeamID

but in my application, the only way I know how to handle this would be something like this:

Dictionary<int,int> d = new Dictionary<int,int>();
foreach (DataRow dr in dt.Rows)
{
    if (d.ContainsKey(dr.ID))
    {
        d[dr.ID] = d[dr.ID] + 1;
    }
    else
    {
        d.Add(dr.ID, 1);
    }
}

Is there a better way?

like image 857
Greg Avatar asked Dec 12 '11 09:12

Greg


Video Answer


1 Answers

You may use Linq.

var result = from row in dt.AsEnumerable()
              group row by row.Field<int>("TeamID") into grp
               select new
                 {
                 TeamID = grp.Key,
                  MemberCount = grp.Count()
                  };
 foreach (var t in result)
     Console.WriteLine(t.TeamID + " " + t.MemberCount);
like image 132
KV Prajapati Avatar answered Sep 19 '22 11:09

KV Prajapati