What is Secret Manager in ASP.Net Core?

This article explains how to hide confidential information for an ASP.NET Core (now .Net 5) app on an development machine. As we know, ASP.Net Core application comes with appsettings.json file. This file contains basic configurable information about the project. Some developer store database connection string with password and some third party API credentials. The best … Read more

How to implement Dependency Injection in .NET 5?

In this article, we will see how to implement Dependency Injection in .NET 5? Although, this implementation will be same for .NET Core 2.1 and .Net Core 3.1. To demonstrate Dependency Injection, I have used .NET 5 with Visual Studio 2019. What is Dependency Injection? Dependency Injection (DI) is a design pattern that can assist … Read more