Category: azure
-
C# integration testing in AzureDevOps with Docker containers– SqlServer and Cachet example
Every software that we make depends on others. For Stankins,as a general ETL data,it is more important to be tested with real data providers.For example,we may want to take data from Sql Server and send to Cachet . How can we have a SqlServer and a Cachet up and running easy ? The obvious answer…
-
.NET Core Alphabet
What I wanted is a simple application ( Web,Mobile,Desktop) that can list,alphabetically,the .NET Core keywords. What is the purpose? For interviews – suppose you want to test the people knowledge in C#. You start the application( again: Desktop or Web or Mobile) and let the candidate choose a letter. Then you see the keywords for…
-
MVC Browser history provider for azure–trying an implementation for 3 hours
first,implement IBrowserUserHistoryRepository – that means implement: public void Save(IEnumerable<BrowserUserHistoryData> history) Azure have PartitionKey/RowKey – I have to add a new class. Also or connectiing,I have to put connectionString="UseDevelopmentStorage=true;" / I tried to add a bulk history : tableHistory.ExecuteBatch(batchOperation); The result was: Unexpected response code for operation : 0 Magic: <add key="TableStorageEndpoint" value="http://127.0.0.1:1002/"/>…
-
Azure tools
Azure storage Explorer : http://azurestorageexplorer.codeplex.com/ – like in VS,but simpler and cleaner Windows Azure ASP.NET Providers Sample : http://code.msdn.microsoft.com/windowsazure/Windows-Azure-ASPNET-03d5dc14 – utils for fast membership and roles. Small problem on local. More samples here: http://code.msdn.microsoft.com/windowsazure/ And that will be all,after reading the documentation and understanding the concepts ( for example,if you understand the session problem in…
-
Azure
I am working at a new application ( Azure + MVC + logging) and I am having a good time – when I know resources. This are the steps that works for me: Azure SDK ( it would be good if you have Sql Server). Now version 1.6,download from http://www.microsoft.com/download/en/details.aspx?id=28045 Optional : run DSInit,http://msdn.microsoft.com/en-us/library/windowsazure/gg433005.aspx,to modify…