This is my old code
DateTime epoch = new DateTime(1970, 1, 1);
var result = (from row in InBoundtable.AsEnumerable()
group row by row.Field<string>("Date") into grp
select new
{
AbandonCalls = grp.Sum((r) => Double.Parse(r["AvgAbandonedCalls"].ToString())),
Date = ((DateTime.Parse(grp.Key.ToString())) - epoch).TotalMilliseconds
}).ToList();
as you see, I am making group on Date column.
Can I make the group on Date and Slice columns? where both of them is string value