我有一个 DataTable,其中包含如下示例数据:
ID | HITS | Date
1 | 12 | 1 October 2017
2 | 15 | 1 October 2017
3 | 13 | 1 October 2017
4 | 5 | 1 November 2017
5 | 7 | 1 November 2017
6 | 3 | 1 November 2017
我想要的结果是:
ID
2 ==> 15 is the max value for hits in Oct 2017
5 ==> 7 is the max value for hits in Nov 2017
更喜欢在 VB.NET 中。我们可以在 TSQL 中执行此操作,但是因为数据已经在 DataTable 中,所以我们必须在 Linq 级别进行操作。
有任何想法吗?