Is it possible to retrieve the Top n records from the Azure Table Storage using C#? I'm using .NET Core.
It would be great if I can get some references as well.
Please note that all my entities are stored using the Log Tail Pattern https://docs.microsoft.com/en-us/azure/cosmos-db/table-storage-design-guide#log-tail-pattern
Thanks, Praveen
.Take(n)
works. – Peter B