Reputation: 27127
Given the older Azure Storage NuGet package is being broken up, it's not entirely clear from the documentation how you access Azure Table Storage from a .NET Core app.
There seems to be some conflicting information. According to this article, the recommended way of access Table Storage is now with the CosmoDb Table API package, but that same article says it doesn't work with .NET Core.
Upvotes: 0
Views: 189
Reputation: 29995
For .net core, you should keep using the older Azure Storage NuGet package, please refer to this issue:
Adding .Net Core/standard support for Microsoft.Azure.CosmosDB.Table is on our roadmap. And
yes you should use `Microsoft.WindowsAzure.Storage' until .Net core, support is enabled
for Azure Cosmos DB Table API.
Upvotes: 2