Hi, I has a datatable to show the following data:

Page_No Print_Group
1 1
1 2
2 3
2 4
2 5


How can I use LINQ query to group by Page_No and select MAX(Print_Group) as the result below:
Page_No Print_Group
1 2
2 5