I'm writing azure application. My questions concerns querying azure table for specific entities.
Application stores statistics of words used by users. In table partitionkey is the language and row key is the word.
I need to query for multiple words. To speed up the process I want to pull in one query all relevant entities.
I know how to 'batch insert' group of entities that have the same partitionkey. How to query for like 50 diffrent entities with the same partitionkey but different rowkey.
Is there possibility of specifying query as string ?
Regards