I have an azure table with about 5 million+ rows, each partition about 100k rows. The RowKey is a sortable timestamp. I need to be able to get the latest record that was inserted in the table.
Since Linq Last, Max, OrderBy etc are not supported, how do I efficiently get the most recent table record?