Another LINQ Pivot Problem - Convert SQL Script to LINQ - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T21:26:34Z http://stackoverflow.com/feeds/question/348900 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/348900/another-linq-pivot-problem-convert-sql-script-to-linq 2 Another LINQ Pivot Problem - Convert SQL Script to LINQ Phil.Wheeler 2008-12-08T08:09:49Z 2009-06-03T03:44:53Z <p>There are a few questions on SO already regarding LINQ pivots and while a couple of them outline my exact problem, I can't successfully translate them to a working solution. I feel that this is mostly due to a join in my tables.</p> <p>So for the benefit of all the LINQ junkies out there who love a problem, here's another puzzle for you to work out. Please help me out (and earn some reputation points and much respect from me) by converting the following SQL stored proc script to LINQ:</p> <pre><code>ALTER PROCEDURE [dbo].[GetTimesheetForWeekById] @timesheetid int, @begindate VarChar(20), @enddate VarChar(20) AS BEGIN SELECT T.TaskName, SUM( case DATEPART(weekday, TE.StartTime) WHEN 1 THEN DATEDIFF(minute, TE.StartTime, TE.EndTime) ELSE 0 END ) AS Sunday, SUM( case DATEPART(weekday, TE.StartTime) when 2 THEN DATEDIFF(minute, TE.StartTime, TE.EndTime) ELSE 0 END ) AS Monday, SUM( case DATEPART(weekday, TE.StartTime) when 3 THEN DATEDIFF(minute, TE.StartTime, TE.EndTime) ELSE 0 END ) AS Tuesday, SUM( case DATEPART(weekday, TE.StartTime) when 4 THEN DATEDIFF(minute, TE.StartTime, TE.EndTime) ELSE 0 END ) AS Wednesday, SUM( case DATEPART(weekday, TE.StartTime) when 5 THEN DATEDIFF(minute, TE.StartTime, TE.EndTime) ELSE 0 END ) AS Thursday, SUM( case DATEPART(weekday, TE.StartTime) when 6 THEN DATEDIFF(minute, TE.StartTime, TE.EndTime) ELSE 0 END ) AS Friday, SUM( case DATEPART(weekday, TE.StartTime) when 6 THEN DATEDIFF(minute, TE.StartTime, TE.EndTime) ELSE 0 END ) AS Saturday FROM Tasks T INNER JOIN TimeEntries TE on T.TaskID = TE.TaskID WHERE TE.StartTime BETWEEN (CONVERT(datetime, @begindate, 103)) AND (CONVERT(datetime, @enddate, 103)) AND TE.TimesheetID = @timesheetid GROUP BY T.TaskName END </code></pre> http://stackoverflow.com/questions/348900/another-linq-pivot-problem-convert-sql-script-to-linq/348916#348916 1 Answer by Marc Gravell for Another LINQ Pivot Problem - Convert SQL Script to LINQ Marc Gravell 2008-12-08T08:32:30Z 2008-12-08T08:32:30Z <p>Well, assuming that the foreign key has an object representation, something like:</p> <pre><code> int timesheetId = ... DateTime start = ..., end = ... var qry = from timeEntry in ctx.TimeEntries let date = timeEntry.StartTime.Date where timeEntry.TimesheetId == timesheetId &amp;&amp; date &gt;= start &amp;&amp; date &lt;= end group timeEntry by timeEntry.Task.TaskName into grp select new { TaskName = grp.Key, Monday = grp.Where(x =&gt; x.StartTime.DayOfWeek == DayOfWeek.Monday).Count(), Tuesday = grp.Where(x =&gt; x.StartTime.DayOfWeek == DayOfWeek.Tuesday).Count(), Wednesday = grp.Where(x =&gt; x.StartTime.DayOfWeek == DayOfWeek.Wednesday).Count(), Thursday = grp.Where(x =&gt; x.StartTime.DayOfWeek == DayOfWeek.Thursday).Count(), Friday = grp.Where(x =&gt; x.StartTime.DayOfWeek == DayOfWeek.Friday).Count() }; </code></pre> <p>Unfortunately, some of the specifics depend on the SQL provider - i.e. which functions (like DayOfWeek etc) it can map successfully as TSQL. Let me know if you get problems...</p> http://stackoverflow.com/questions/348900/another-linq-pivot-problem-convert-sql-script-to-linq/942948#942948 0 Answer by Richard Hein for Another LINQ Pivot Problem - Convert SQL Script to LINQ Richard Hein 2009-06-03T03:33:59Z 2009-06-03T03:44:53Z <p>How's this (modifying Marc's):</p> <pre><code>var qry = from timeEntry in timeEntries let date = timeEntry.StartTime.Date where timeEntry.TimesheetId == timesheetId &amp;&amp; date &gt;= start &amp;&amp; date &lt;= end group timeEntry by timeEntry.Task.TaskName into grp select new { TaskName = grp.Key, Monday = grp.Where(x =&gt; x.StartTime.DayOfWeek == DayOfWeek.Monday) .Sum(x=&gt;x.EndTime.Subtract(x.StartTime).TotalMinutes), Tuesday = grp.Where(x =&gt; x.StartTime.DayOfWeek == DayOfWeek.Tuesday) .Sum(x =&gt; x.EndTime.Subtract(x.StartTime).TotalMinutes), Wednesday = grp.Where(x =&gt; x.StartTime.DayOfWeek == DayOfWeek.Wednesday) .Sum(x =&gt; x.EndTime.Subtract(x.StartTime).TotalMinutes), Thursday = grp.Where(x =&gt; x.StartTime.DayOfWeek == DayOfWeek.Thursday) .Sum(x =&gt; x.EndTime.Subtract(x.StartTime).TotalMinutes), Friday = grp.Where(x =&gt; x.StartTime.DayOfWeek == DayOfWeek.Friday) .Sum(x =&gt; x.EndTime.Subtract(x.StartTime).TotalMinutes), }; </code></pre>