Recurring Mail notification using Hangfire
Hangfire is an open-source software for task scheduling in ASP .NET and ASP .NET core. It uses RDBMS / No SQL storage for storing background processing job details. So, Storage connectivity is the only configuration required to implement hangfire in ASP .NET applications. This framework includes hangfire server which queries the storage to process the […]
Introduction to GraphQL in .Net Core
Explore the seamless integration of GraphQL in .NET Core for efficient and flexible API development.
Boosting Performance in .NET Web API 6 with Redis Cache
Enhance .NET Web API 6 performance by implementing Redis caching for efficient data storage and retrieval.
Clean architecture for a Web API in ASP.NET Core
Implementing a clean architecture for a Web API in ASP.NET Core ensures modular, testable, and maintainable code by separating concerns into distinct layers such as presentation, application, domain, and infrastructure.
Boxing and Unboxing in C#
understanding the concept of boxing and unboxing in c#
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.
Pagination using HAL API schema approach using .Net Framework
In .NET Framework, HAL API schema facilitates user-friendly pagination with standardized response structures that include navigation links, streamlining the process of moving between data pages.
Implementation of Conversation Language Understanding (CLU)
Implementation of Conversation Language Understanding (CLU) involves creating a robust system that can comprehend and respond to natural language conversations effectively, enabling seamless communication between humans and machines.
Building a Minimal API in ASP.NET Core 7
In ASP.NET Core 7, creating a Minimal API is a streamlined and efficient way to build web APIs with minimal overhead. This approach simplifies the development process by eliminating unnecessary boilerplate code and configuration, allowing developers to focus on the essential aspects of their application.
Tuples in C#
Tuples in C# are lightweight data structures that can hold multiple, heterogeneous elements, providing a convenient way to return multiple values from a method.