Skip to content

Instantly share code, notes, and snippets.

@hagbarddenstore
Created May 30, 2014 10:32
Show Gist options
  • Save hagbarddenstore/91e90d26ec9324379de3 to your computer and use it in GitHub Desktop.
Save hagbarddenstore/91e90d26ec9324379de3 to your computer and use it in GitHub Desktop.
var order = allCalls.Select((number, index) => new
{
Number = number,
Duration = allDuration[index]
})
.GroupBy(x => x.Number)
.Select(x => new
{
Number = x.Key,
Count = x.Count(),
Duration = x.Sum(c => c.Duration)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment