I'm using Azure Table Storage on CosmosDB through Node.js. I figured out a hack using greater than and less than to give startsWith
functionality.
On the other hand, I still need endsWith
functionality and can't find a way to make it work. It might be one of those cases where I have to pull in all partition or row keys and then do the string search myself.
I noticed Azure Table has the same query format as odata and in this document for $filter
, I'm seeing an endsWith
command listed: https://learn.microsoft.com/en-us/previous-versions/dynamicsnav-2016/hh169248(v=nav.90)
Is there an endsWith
command available or instead, is there a way to query all the partition or row keys and do the search myself?