'Where has Microsoft.WindowsAzure.Storage.Tables gone?

On the GitHub page for https://github.com/Azure/azure-storage-net it states "As of 9.4.0, Tables are not supported by this library."

Does anyone know where this namespace has gone ?



Solution 1:[1]

There have been multiple renames and moves of the .NET SDK for Azure Storage tables. The versions go like this, chronologically:

  1. Microsoft.WindowsAzure.Storage.Table
  2. Microsoft.Azure.CosmosDB.Table
  3. Microsoft.Azure.Cosmos.Table
  4. Azure.Data.Tables

For some time, the SDK became part of the Azure Cosmos DB SDK (instead of Azure Storage SDK), allegedly to ease the migration, but now it has its own package that seems to go in the direction of separation and unification as part of the implementation of the Track2 architecture of Azure SDKs.

There is a migration guide to the new SDK, but it does not cover the first SDK version in the sequence, which is sadly the one this question is about.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Palec