I have a datastructure as shown below. For each (Person, Game) pairs, I need to find the lastest score in the past 24 hours. Is it possible to do that in LINQ? Something like (Person, Game, LatestScore)
+----------------+-----------------+---------------+-+------------+
| Person         |  Game           | Score         |EventTime     |
+-----------------------------------------------------------------+
|                |                 |               |              |
|                |                 |               |              |
+----------------+-----------------+---------------+--------------+
Any hints would be very helpful.