Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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,
                      };
share|improve this question
Does this not work? – user7116 Mar 16 at 1:53
haven't tried it but i'm thinking if this is the right way to do it. – JeeShen Lee Mar 16 at 1:56
Try it and if it gives you an exception, update your question with the details. – David Khaykin Mar 16 at 1:57
i'm quite sure the Percentage calculation is wrong cause it's hardcoded to divive by 8 projects but instead it should be divided by number of groupentry. – JeeShen Lee Mar 16 at 1:59
tried. i have error "ActivityCode = groupEntry.Key;" cannot convert type "int" to type "xx.xxx.ActivityCode" – JeeShen Lee Mar 16 at 2:22
show 3 more comments

2 Answers

If you want to get a percentage, get a count of the number of activites and use that to divide by.

Not sure if you will need a divide by 0 check here. I'm not sure what the second LINQ will do if there's no data to begin with. Not sure if that would raise an error or not.

Int32 numberOfProjects = (from entry in DbSet
              where entry.Timesheet.UserID == userid &&
                  entry.Timesheet.DateSubmitted >= startdate &&
                  entry.Timesheet.DateSubmitted <= enddate
              select entry.ActivityCode.ActivityCode1).Distinct().Count();

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)) / numberOfProjects) * 100,
                      MinuteSpent = Convert.ToInt32(groupEntry.Sum(x => x.Duration)) * 60,
                  };
share|improve this answer
how to get only the projects that is involve? I mean "numberOfProjects" is now consider all projects in the table, what if i want only projects that user perform on the certain timeframe with this consideration into account Timesheet.UserID TimeSheet.TimeSheetDate – JeeShen Lee Mar 16 at 2:13
Oh, duh, forgot to filter on the date range :) – scott.korin Mar 16 at 2:23
how do i find the ActivityCode object in LINQ? i'm getting "ActivityCode = groupEntry.Key;" cannot convert type "int" to type "xx.xxx.ActivityCode" – JeeShen Lee Mar 16 at 4:49

Here's what i found as answer based on the inputs by others in the thread. thanks!

    var groupEntries = from entry in DbSet
                       where entry.Timesheet.UserID == userId &&
                             entry.Timesheet.TimeSheetDate <= endDate.Date &&
                             entry.Timesheet.TimeSheetDate >= startDate.Date
                       group entry by entry.ActivityCode
                           into groupEntry
                           select new
                           {
                               ActivityCode = groupEntry.Key,
                               Duration = Convert.ToInt16(groupEntry.Sum(r => r.Duration))
                           };

    var totalDuration = groupEntries.Sum(r => r.Duration);

    var result = from groupEntry in groupEntries
                 select new TimeSheetSummary()
                            {
                                ActivityCode = groupEntry.ActivityCode,
                                HourSpent = groupEntry.Duration / 60,
                                MinuteSpent = groupEntry.Duration % 60,
                                Percentage = groupEntry.Duration / totalDuration * 100
                            };
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.