ingo_ww
ingo_ww

Reputation: 321

where can I find actual implementation of storage tables funtion?

Many samples show table implementation with old deprecreated NUget-package https://learn.microsoft.com/de-de/azure/storage/common/storage-samples-dotnet or cosmos DB tables.

The nuget package shows that it is deprecreated and for azure tables there a recommended replacement packages (see Link zu Nuget package ).

WindowsAzure.Storage 9.3.3 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.
Prefix Reserved
This package has been deprecated.
Suggested Alternatives
Azure.Storage.Blobs

Additional Details
Thank you for the interest in this package.

If you are looking for the latest packages to interact with Azure Storage, please use the following libraries:
Azure.Storage.Blobs
Azure.Storage.Queues
Azure.Storage.Blobs.Batch
Azure.Storage.Files.Shares

For older versions of this package see these split packages:
Microsoft.Azure.Storage.Blob/9.4.0
Microsoft.Azure.Storage.File/9.4.0
Microsoft.Azure.Storage.Queue/9.4.0

where i find actual imoplemantation for azure tables?

Upvotes: 0

Views: 125

Answers (1)

Gaurav Mantri
Gaurav Mantri

Reputation: 136306

For working with Storage Tables (or Cosmos Tables), there are 2 packages right now - Azure.Data.Tables and Microsoft.Azure.Cosmos.Table. Former is from Azure SDK team while the latter is from Azure Cosmos DB team.

For the former, you can find sample code here (German) and here (English).

Upvotes: 1

Related Questions