Hi I\'m new to programming, could you please help me with this one:
I\'am getting an error in \"To.List()\" Error 1 Cannot implicitly convert type \'System.Co
You are basically trying to assign an anonymous type
new { d.Key.month, d.Key.year, count = d.Count() }
to your object. Instead of select new { ... }, just select new IncByYrMonthModel() { ... } to populate your object.