Using LINQ Group By and String.Join() / Aggregate() in Entity Framework 3.5

linq to sql 的时候,有时候需要用到 先group  然后来个 aggregate 串连一下值, 

但会总会出错,说不识别 aggregate 或者 string.join 方法

搜遍网络 一下链接是正解: 意思就是 在group by 之后记得tolist, 然后就可以正常aggregate了~

http://www.mythos-rini.com/blog/archives/4510

原文地址:https://www.cnblogs.com/akak123/p/3571393.html