I have problem with thinking up LINQ query for getting only newest items.
Example of data what I have (left) and what I need to select (right):
Name Notes DateRecorded Name Notes DateRecorded
Item1 A 1.1.2015 Item1 C 1.3.2015
Item1 B 1.2.2015 Item2 X 1.2.2015
Item1 C 1.3.2015
Item2 X 1.2.2015
Class Properties
Name As String
Notes As String
DateRecorded As Date
End Class