微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

asp.net-core-mvc – EF7和GroupBy()无法翻译

我在EF7 Beta 8上运行以下代码

var locationGrops = from l in db.Locations
                    group l by l.ServiceType into g
                    select g;

var list = locationGrops.ToList();

当我执行此代码时,EF会显示警告.

warning : [Microsoft.Data.Entity.Query.QueryCompilationContext] The LINQ express
ion 'GroupBy([l].ServiceType,[l])' Could not be translated and will be evaluate
d locally.

查询对我来说似乎很基础,sql中有GROUP BY.有没有办法让它在服务器上运行?

解决方法

此时,EF7不支持group by和大多数子查询.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐