0

I'm using Azure Table for store a TFIDF model and have a table where the partition keys are the terms. They may have some characters such as "`" or "'". When inserting entities with these character, I get a Bad Request error. What characters are not allowed as the partition key in Azure Table?

HHH
  • 6,085
  • 20
  • 92
  • 164
  • 1
    Possible duplicate of [Azure Table Storage RowKey restricted Character Patterns?](http://stackoverflow.com/questions/11514707/azure-table-storage-rowkey-restricted-character-patterns) –  Dec 17 '15 at 10:27

1 Answers1

0

Please see this article as it answers your question.


Characters Disallowed in Key Fields

The following characters are not allowed in values for the PartitionKey and RowKey properties:

•The forward slash (/) character

•The backslash () character

•The number sign (#) character

•The question mark (?) character

•Control characters from U+0000 to U+001F, including:

◦The horizontal tab (\t) character

◦The linefeed (\n) character

◦The carriage return (\r) character

•Control characters from U+007F to U+009F

jehine-MSFT
  • 240
  • 1
  • 8
  • Thanks. The list does not contain character single quote (') but this one looks to be restricted because whenever I try to add a partition key containing a single quote Azure Table return a Bad Request. Is that correct? – HHH Dec 21 '15 at 17:17
  • The same for a dot . character. – André Boonzaaijer Feb 11 '20 at 09:17