by Alex Shapovalov | Aug 29, 2021 | Azure
Windows Azure user management is a little bit complicated, and unfortunately, there is no way to add users to the existing database using the Microsoft Azure management portal. To add a new user to the existing database in windows azure you have to do the following:...
by Alex Shapovalov | Aug 29, 2021 | Git
You can compare branches in git using git diff first-branch..second-branch but this will give you all changes between branches, but sometimes you need to know only files which were changed. You can do it using the following git command, it will give you a list of...
by Alex Shapovalov | Aug 29, 2021 | IIS
Local development for ASP.NET websites over HTTPS protocol is much easy with the IIS Express development certificate, which is pre-installed with IIS on Windows 8. But anyway when a web application runs the first time in any browser, a message similar to the...
by Alex Shapovalov | Aug 29, 2021 | DevOps
The blog post will explain how to create a build system and deploy application code to different environments, such as DEV, UAT, PROD… using TeamCity and MSDeploy. The application which needs to be deployed is an ASP.NET MVC 4 application, but it does not matter, it...
by Alex Shapovalov | Aug 28, 2021 | Software Development
I have used Micro ORM for one of my projects recently and want to share my experience with such micro ORM as Dapper or Peta Poco, as well as compare them with such ORM tools as EntityFramework or NHibernate. When talking about micro ORM it usually does not matter...