我的表中有“Category”列,我想从每个类别中取3行。 这是我的表的例子:
ID | Category | Text
----------------------
01 | TST | Text here
02 | TST | Text2 here
03 | TST | Text3 here
04 | TST | Text4 here
01 | TST02 | Text here
02 | TST02 | Text2 here
03 | TST02 | Text3 here
04 | TST02 | Text4 here
05 | TST02 | Text5 here
这就是我想回来的原因:
ID | Category | Text
----------------------
01 | TST | Text here
02 | TST | Text2 here
03 | TST | Text3 here
01 | TST02 | Text here
02 | TST02 | Text2 here
03 | TST02 | Text3 here
如何使用LINQ完成它?
我试着这样做:
.GroupBy(x => x.Category).Take(3)
但之后我无法使用。选择
更新 当我使用SelectMany时,我收到一个错误:
无法识别查询源:ItemName = x,ItemType = System.Linq.IGrouping`2 [System.String,ADDE.Models.Notification],Expression = from IGrouping`2 x in {from Notification w in value( NHibernate.Linq.NhQueryable`1 [ADDE.Models.Notification])其中([w] .UserId == 04bccede-46d0-44f8-814b-346d5510acb8)orderby [w] .Time asc select [w] => GroupBy([w] .Category,[w])}
更新2: 这是我的代码:
.GroupBy(x => x.Category).SelectMany(x => x.Take(3)).Select(
s =>
new NotificationData
{
Category = s.Category,
Text = s.Text,
Time = DateTime.Now.Subtract(s.Time)
})
答案 0 :(得分:10)
你想用这个:
var result = data.GroupBy(x => x.Category)
.SelectMany(x => x.Take(3));