I have a requirement where i need to display Rolling 12 month data.Below is my query
var lt = (from a in apps
select new
{
AppId = a.Id,
AppName = a.Name,
DataPoints = (from e in errs join ei in errInstances on e.Id equals ei.ErrorId
where (e.ApplicationId == a.Id && ei.stampUTC >= startDate && ei.stampUTC <= endDate)
group ei by new { ei.stampUTC.Month, ei.stampUTC.Year } into grp
select new { Year = grp.Key.Year, Month = grp.Key.Month, Count = grp.Count() }).OrderBy(y => y.Year) }).ToArray();
I need data in the fom AppId,AppName,DataPoints= {data of all 12 months} in case for a month there is no data for an app..then the month should come with count as 0.But my query gives me only the months for which app data exists
For example an app has data for only dec 2011..then i need the datapoints to hold 0 s for jan 2011 to nov 2011 and count of dec 2011..But my present query gives Datapoints to hold only dec 2011 data.