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 […]

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.

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.

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.