├── .gitignore ├── BasicSendReceiveUsingQueueClient ├── BasicSendReceiveUsingQueueClient.csproj ├── Program.cs └── readme.md ├── BasicSendReceiveUsingTopicSubscriptionClient ├── BasicSendReceiveUsingTopicSubscriptionClient.csproj ├── Program.cs └── readme.md ├── LICENSE ├── README.md ├── TableStorageVsCosmosDB ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── TableStorageVsCosmosDB.csproj └── packages.config └── azure-what-to-use-when.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/.gitignore -------------------------------------------------------------------------------- /BasicSendReceiveUsingQueueClient/BasicSendReceiveUsingQueueClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/BasicSendReceiveUsingQueueClient/BasicSendReceiveUsingQueueClient.csproj -------------------------------------------------------------------------------- /BasicSendReceiveUsingQueueClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/BasicSendReceiveUsingQueueClient/Program.cs -------------------------------------------------------------------------------- /BasicSendReceiveUsingQueueClient/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/BasicSendReceiveUsingQueueClient/readme.md -------------------------------------------------------------------------------- /BasicSendReceiveUsingTopicSubscriptionClient/BasicSendReceiveUsingTopicSubscriptionClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/BasicSendReceiveUsingTopicSubscriptionClient/BasicSendReceiveUsingTopicSubscriptionClient.csproj -------------------------------------------------------------------------------- /BasicSendReceiveUsingTopicSubscriptionClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/BasicSendReceiveUsingTopicSubscriptionClient/Program.cs -------------------------------------------------------------------------------- /BasicSendReceiveUsingTopicSubscriptionClient/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/BasicSendReceiveUsingTopicSubscriptionClient/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/README.md -------------------------------------------------------------------------------- /TableStorageVsCosmosDB/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/TableStorageVsCosmosDB/App.config -------------------------------------------------------------------------------- /TableStorageVsCosmosDB/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/TableStorageVsCosmosDB/Program.cs -------------------------------------------------------------------------------- /TableStorageVsCosmosDB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/TableStorageVsCosmosDB/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TableStorageVsCosmosDB/TableStorageVsCosmosDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/TableStorageVsCosmosDB/TableStorageVsCosmosDB.csproj -------------------------------------------------------------------------------- /TableStorageVsCosmosDB/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/TableStorageVsCosmosDB/packages.config -------------------------------------------------------------------------------- /azure-what-to-use-when.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmaluijb/azure-what-to-use-when/HEAD/azure-what-to-use-when.sln --------------------------------------------------------------------------------