1

我的表中有“类别”列,我想从每个类别中取 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)

但在那之后我不能使用 .Select

更新: 当我使用 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]) where ([w].UserId == 04bccede-46d0-44f8-814b-346d5510acb8) orderby [w].Time asc select [w] => GroupBy([w].类别,[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)
                                                         })
4

1 回答 1

10

你想用这个:

var result = data.GroupBy(x => x.Category)
                 .SelectMany(x => x.Take(3));
于 2013-04-05T13:09:49.880 回答