Hi
I have a table with a column Version (int), that table also have a column Key, when the other columns change the value in column Key remains unchanged and the column Version is incremented by one.
Something like this:
Key Other Version
XX XA 1
XX XC 2
YY ZZ 1
YY ZY 2
YY ZW 3
and i want to filter the collection of these entities to only get that (max(version) group by Key):
XX XC 2
YY ZW 3
It is possible? How?
Regards
Desbaratizador