当我尝试打印出 LINQ 结果时,我遇到了 EntityCommandException。这是我的代码:
var contacts = from c in db.mydata
join r in db.contacts on c.user equals r.user
group c by new { c.user, r.name }
into g
orderby g.Count() descending
select new { name= g.Key.name , counter = g.Count() } ;
foreach (var co in contacts )
{
Console.Write(co.name);
}
例外是在 foreach 行。如果在我 print 的 foreach 循环中Console.Write(co.counter);
,异常不会出现。