I am trying to execute a query for one of my Azure Tables, the query should retrieve all the files containing the input string.
I tried using string.contains (), but it is not supported by Azure, I also tried string.startswith (), it is also not supported.
I am wondering if there is a way to do this in Azure Tables. I store information about files in tables, and the section key is the virtual path of the saved item.
eg. Images_Jpg_Image1.jpg there will be a partition key for one of the files, I used '_' because Azure will not allow '/' in partition keys.
I would like to compare the previous section with
Ideally, the following lines return this section key
Images_ Images_Jpg Jpg_ Image1.jpg
I have all the tables configured and all the other queries, this is just one query that I cannot understand.
Thanks in advance for your help,
Matt
source share