I am developing an app for Windows Azure and just started using azure table storage using version 2.1.0.4 (the newest version is not supported by the storage simualtor yet) of the storage API. When I now try to execute a TableOperation
like:
cloudTable.Execute(TableOperation.Insert(entity));
I get the following exception:
The type 'Microsoft.WindowsAzure.Storage.Table.TableOperation' exists in both 'Microsoft.WindowsAzure.Storage.dll' and 'Microsoft.WindowsAzure.Diagnostics.StorageUtility.dll'
How can I get that to work?
Am I using an incompatible version of Diagnostics (it is from the Azure SDK 2.2)?