0
votes

I have consulted the documentation for creating an Azure Storage Account and succeeded in doing so, but there is only the option for containers and not for Tables or any other option as the documentation said so. This feature has been moved? How do I create an Azure Storage Account with the tables option available?

1
Can you provide information about your project and dependencies: .csproj, package.config, etc.?joncloud
@joncloud Sorry I will remove the c# tag. The problem was that the Tables option didn't appear once I create the Storage Account. But it appeared once I created a new Storage Account with the perfomance set to Standard instead of Premium.Camilo Enriquez

1 Answers

3
votes

Please check your storage account type, if it's a blob storage kind only or premium tier kind, then it's no table storage there.

Please make sure the storage account is General-Purpose V2 or V1 and standard tier, you can check it's type as per screenshot below:

enter image description here

And this link is the full list of the azure storage account type, you can see the table storage is supported from which type.