I am trying to get the rest of the select keys in this linq query but the intellisense is giving me an error
var query2 = from row2 in query1
group row2 by row2.questionid into g
where g.Count() > 0
select new
{
questionid1, //Error here
time, //Error here
thecount = g.Count()
};
How do I get those select keys?