我有一个列表(pk = Id)。该表有一个由 PracticeProfileId 到 practiceprofile 的 FK(即 1 个练习配置文件有许多列表)
我想返回每个练习资料的平均列表数量
int count;
count = (from l in myentity.Listings
group l by l.PracticeProfileId into g
select g.Count()).Average();
我认为我已成功按 practiceprofile 对列表进行分组,但我不确定如何获得列表的平均总数
谢谢