.Net Core

Implement Toast Notifications in .Net Core

Implementing Toast Notifications in .Net Core Toast notifications are a great way to provide non-intrusive feedback to users in a web application. They are small pop-up messages that appear at the corner of the screen, providing information or alerts without interrupting the user’s workflow. In this blog post, we will explore how to implement toast […]

Logging Errors in SQL Server using Serilog

Logging Errors/Exceptions in SQL Server using Serilog Logging is a critical aspect of software development, aiding developers in diagnosing issues, monitoring application behavior, and understanding user interactions. Serilog, a popular logging library in the .NET ecosystem, provides flexible and extensible logging capabilities. In this blog, we will learn how to implement Serilog to write logs […]

Custom Exception Handling Middleware in .Net Core

Custom Exception Handling Middleware in .Net Core Exception handling is a critical aspect of developing resilient and reliable applications. In .NET Core, the introduction of middleware has provided developers with a powerful tool to manage exceptions effectively. In this blog post, we’ll explore the importance of exception handling middleware in .NET Core and I’ll guide […]

Rate Limiting in .Net Core Web API

Rate Limiting in .Net Core Web API Rate limiting is a crucial aspect of web application development, designed to control the amount of incoming traffic from a single source within a specific time window. Implementing rate limiting in your .NET Core application helps prevent abuse, overloading, and denial-of-service attacks, ensuring fair usage of your resources […]

What is Clean Architecture and why should I use it?

Introduction Clean Architecture style focus on a loosely coupled implementation of use cases. Use cases as central organizing structure, decoupled from frameworks and technology details. What is Clean Architecture? With Clean Architecture, the Domain and Application layers are at the centre of the design which is known as the Core of the system. Business Logic […]

Scroll to top