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.
Conversational Language Understanding (CLU) in Azure Language Service
Azure Language Service’s Conversational Language Understanding (CLU) empowers chatbots and virtual assistants with natural language understanding.
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 […]
ASYNC and AWAIT keyword in ASP.NET Web API :
Understand the concept of Async and Await keyword in ASP.NET WebAPI
Database First Approach in .Net Web API
Understand the working of Database First Approach in .Net Web API
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 […]