I am trying to get a query in azure in which I want to get the entity with the given partition key and row key based on Date.
I am keeping entities Partisionkey, row key, Date, Additional info.
I am looking for a query using tableservies so that , I always get the latest one (using date)
How can I get the query? (I am using node and Azure)
TableQuery
.select()
.from('myusertables')
.where('PartitionKey eq ?', '545455');
How write the table query?