我正尝试使用EntityFramework Core在一个DotNetAPI应用程序中转换以下Postgresql查询,以返回包含该查询输出结果的对象列表。
要转换SQL查询:
select speciality_type, speciality_priority ,
count(speciality_type)
from specialties
group by speciality_priority, speciality_type
所需输出:
我知道最后一列是count列,它最初不在表中,但我在查询中创建了它。
我尝试了很多像_DataAccess.SpecialitiesTable.GroupBy(...).Select(...)
这样的东西,其中大多数在调用函数时都会给予我一个错误,说EF核心语句无法转换为sql。
先谢谢你了。
1条答案
按热度按时间dgenwo3n1#
请尝试下列查询: