I am using the following query in c# .net:
TableQuery<MyType> query = new TableQuery<MyType>().Take(50);
This works in grabbing 50 records, but I want to grab the most recent (descending) records from the table. I have looked at other answers, but none were concise or working.
What is the most efficient way to grab n most recent records from an Azure Table Storage entity? Please provide a concise answer with a working code example.
Edit: I'm particularly interested in how Azure Storage Explorer navigates 'cached items'. I can easily order my results (amongst millions of rows) within Azure Storage Explorer by clicking on the column. This will return me what I want, however, I'm not seeing any documentation on how to access these 'cached items'.