Reputation: 3035
We are migrating our application from 1.7 version of Client Azure SDK to Azure SDK 2.4. In this process, I update Microsoft.WindowsAzure.Storage, Since Methods and Namespace are modified, I have rework to make use of Azure SDK 2.4 and again performance when compare tableserviceentity and tableservicecontext. Since TableServicecontext works on WCF it is very flow to expose data with OData protocol.
Instead of TableServiceContext, I was asked to use TableClient, on which thing the new API works older version works on WCF but how abt new Azure SDK works on whcih protocol and architecture.
In Azure SDK .17 this.tableServiceContext.MergeOption = MergeOption.NoTracking;
How to convert above code in Azure SDK > 2.0
Is there any new Code sample using Azure SDK 2.4, I could not find any example or code sample for new version Azure SDK.
Upvotes: 0
Views: 370
Reputation: 431
For the latest Storage SDK v12, you can find migration guides in the Azure SDK GitHub repos for Java and .NET:
You'll be able to find samples in the repos as well in the following languages:
Upvotes: 0
Reputation: 1
please take a look at the sample code at http://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-how-to-use-tables/, see that helps
Upvotes: 0