我无法获得此 linq 的正确结果。
var transactions = from trans in tblMemberInfo.AsEnumerable()
orderby trans.Field<Int32>("AGE") ascending
group trans by trans.Field<Int32>("AGE") into groupTrans
select new
{
ZeroToSix = groupTrans.Count(age => age.Field<Int32>("AGE") >= 0 && age.Field<Int32>("AGE") <= 6)
};
我有一个数据表,其中包含以下数据。现在,我想总结年龄在 0 到 5 之间的所有年龄计数。
AGE Count
0 6
1 6
2 7
3 5
4 5
5 20
6 5
7 5
8 5
9 5
10 5
我想看到这样的结果。
Age
ZeroToFive = 49
AboveSix = 25