Configurations in ASP.NET Core

Introduction In .net framework, appsettings and configuration were much easier. There was a global configuration file(web/app.config) and, within it, there was a section named appsettings that could receive flat key-value pairs of string data. It was not perhaps the most optimised way as application has to be restarted even after simple change in the configuration file. …

Continue reading Configurations in ASP.NET Core

Azure Cosmos DB-SQL API Geo Replication using EF Core- Part Three

Recap In the previous articles, we have seen the introduction of Cosmos DB and EF Core with Cosmos DB-SQL API. If you haven’t read my previous articles then I highly encourage you to do so https://dotnetintellect.com/2020/07/05/azure-cosmos-db-sql-api-using-ef-core-part-two/https://dotnetintellect.com/2020/06/29/azure-cosmos-db-intro/ Source Code Azure CLI In the previous article, we saw how to create Cosmos DB. You can refer to …

Continue reading Azure Cosmos DB-SQL API Geo Replication using EF Core- Part Three

Exploring Redis cache with Docker using asp.net core- Part 2

Recap In the previous article, we have witnessed about adding Redis to the Docker container and learnt about connecting Redis container with asp.net core web-api. If you haven't read my previous article yet, I highly recommend you to read it by clicking here. DockerFile Before going into details of creating a DockerFile, let's deep dive …

Continue reading Exploring Redis cache with Docker using asp.net core- Part 2