This article explain CQRS design pattern with MediatR in ASP.Net Core 5.0. CQRS is a design pattern that separated the read and write operations of a data source…
.NET Core
ASP.NET Core Web API with MongoDB CRUD- Beginner’s Guide
This article explain CRUD operation using MongoDB in ASP.NET Core Web API. We discuss here basics of MongoDB and how to use it in ASP.NET Core
How to send Email in ASP.NET Core-Beginner’s Guide
This article explain how to send Email in ASP.NET Core using Mailkit. It is open-source cross-platform library that can be used in .NET or .NET Core applications running on Windows, Linux, or Mac.
Integrate SMS in ASP.NET Core using Twilio
This article explain how to send an SMS with Twilio in ASP.Net Core using C#. So we will use Twilio as our SMS service to send an SMS message and automate a response when an SMS message is received.
Toast Notifications in ASP.NET Core Razor Pages
This article we will learn how simply we can use Toast Notifications in ASP.NET Core Razor Pages 5.0. Mainly on the MEAN stack project, we require to notify the end-user based on events. toastr.js library is very simple and easy to use.
Worker Service in .NET Core
A worker service is a .NET project built using a template which supplies a few useful features that turn a regular console application into something more powerful. A worker service runs on top of the concept of a host……