Microsoft Azure (formerly Windows Azure) is a Platform as a Service (PaaS) and Infrastructure as a Service (IaaS) cloud computing platform by Microsoft. Users of the platform can deploy their applications onto cloud hosting benefiting from on-demand service, elastic scale, and a highly managed ...
3
votes
1answer
108 views
Safely storing Azure Topic clients in concurreny dictionary
I am trying to optimize the usage of TopicClients in my app. The instance is originally covered by interface and passed by IoC, so the IoC will dispose it at the end of the program life cycle. This ...
3
votes
2answers
115 views
Azure cache getoradd (without locking)
Inspired by the non-locking implementation proposed in this post, the following code is an attempt to (about) do the same using the azure cache. As I'm totally green on the Azure cache I'd appreciate ...
3
votes
1answer
2k views
Using dapper.net and repository pattern in Azure websites
I'm currently on Azure Websites & Azure SQL, some documentation recommends using Async as much as possible as cloud services higher latency and have chances of dropping traffic, but it's also ...
3
votes
1answer
79 views
2
votes
2answers
124 views
Users and friends query with retry, returning JSON
I am new to Azure and SQL. I have the following function that is part of a larger Web-API which is hosted on Azure and is querying an SQL Server database that is also hosted on the Azure platform:
...
2
votes
0answers
140 views
Check if an entity exists in a Azure Table Storage
I want to check as fast as possible if an entity, based on PartitionKey and RowKey, exists in an Azure Table Storage.
I can do a standard TableOperation.Retrieve and check the result, like:
...
0
votes
0answers
124 views
Azure Active Directory controller
I have a class called AzureActiveDirectoryController. This class has some methods: one to create users, one to get the app name, one to register schema extensions ...