I have a timesheet entries as below
ActivityCode : Duration
- Project A: 12h:31mins
- Project B: 00h:10mins
- Project A: 01h:10mins
- Project A: 12h:31mins
- Project C: 12h:31mins
- Project B: 00h:10mins
- Project B: 01h:10mins
- Project A: 12h:31mins
What is the correct way to group the projects and aggregate their total time spent? i'm trying the below
var summary = from entry in DbSet
where entry.Timesheet.UserID == userid &&
entry.Timesheet.DateSubmitted >= startdate &&
entry.Timesheet.DateSubmitted <= enddate
group entry by entry.ActivityCode.ActivityCode1
into groupEntry
select new TimeSheetSummary()
{
ActivityCode = groupEntry.Key,
HourSpent = Convert.ToInt32(groupEntry.Sum(x => x.Duration)),
Percentage = (Convert.ToInt32(groupEntry.Sum(x => x.Duration)) / 8) * 100,
MinuteSpent = Convert.ToInt32(groupEntry.Sum(x => x.Duration)) * 60,
};