Serilog in Asp.Net Core WebApi

Serilog is a popular logging library for ASP.NET Core WebAPI applications. It offers powerful and flexible logging capabilities, enabling you to easily capture and manage log data in your web API project.

AppSettings in Asp.Net WebAPI:

In ASP.NET Web API, the configuration settings for your application, such as connection strings, API keys, and other application-specific settings, can be stored in the appsettings.json file. This file is typically located in the root directory of your project.In your Web API project, install the Microsoft.Extensions.Configuration NuGet package if it’s not already installed. This file […]

Dependency Injection in Asp.net

Dependency Injection is a design pattern which allows us to develop Loosely Coupled software components.  It enables us to make the better management and reduce the complexity of the software in future. Its main purpose is to make code reusability and maintainable. It has three types:  Tightly Coupled in software design:  Tightly Coupled means two objects […]