I have a table that looks like this:
Id GroupId Value
and it has about 100 rows
How can I return the top 10 rows for value but with no duplicating GroupId?
|
I have a table that looks like this:
and it has about 100 rows How can I return the top 10 rows for value but with no duplicating GroupId?
| ||||
|
feedback
|
|
This should do it:
Edit: Modified to return the entire object. | |||||||||
feedback
|
|
Not sure if this translates to LINQ-to-SQL, but here's an idea from L2Obj
In english, it groups on the GroupId and then selects the Foo with the highest Value from each group, orders those, and then takes 10. If anything, you could get a concrete list of your objects from L2SQL and then perform the grouping in memory, should not be a performance/memory issue since you say there are only 100 rows. For LINQ-to-SQL, you might try something like this
This is based on a SQL query to perform the same operation
It basically performs two groupings. The first gets the max value for each group, the second gets the min ID for each record from each group that has the max value (in case 2 records in a group have the same value), and then selects the top 10 records. | ||||
|
feedback
|
|
This one will get the full row values (it's working for me with the sample data I show bellow):
Output:
| ||||
|
feedback
|