According to this article https://learn.microsoft.com/en-us/azure/cosmos-db/table-storage-design-guide#log-tail-pattern, if save RowKey to string invertedTicks = string.Format("{0:D19}", DateTime.MaxValue.Ticks - DateTime.UtcNow.Ticks); then I can always pick the most recent record by using azure.TableQuery().top(1);
But actually it's not works like there, the most recent add row unable to be pick up. I tested it by manually adding two rows, with Rowkey in following values 2518658399914874511 and 2518658399901330034. Please advise.