Construct the rowkey as follows:
RowKey = String.Format("{0:D19}", DateTime.MaxValue.Ticks - DateTime.UtcNow.Ticks );
This allows the data to be fetched by putting a row limit on the query.
Setting this to 20 will give the latest 20 items.
Random outpourings of a software developer
Construct the rowkey as follows:
RowKey = String.Format("{0:D19}", DateTime.MaxValue.Ticks - DateTime.UtcNow.Ticks );
This allows the data to be fetched by putting a row limit on the query.
Setting this to 20 will give the latest 20 items.