Flutter Front-End for Secure Chat Application with ASP.NET Core Web API

In this part of the tutorial, we’ll build a Flutter app to handle user registration, login, and secure real-time chat using SignalR. JWT tokens will be stored in memory for authenticating with the backend API and SignalR server. Setting Up the Flutter Project Installing Dependencies Add the following dependencies to your pubspec.yaml: Run: Creating the … Read more

Inventory Management System with Offline Data Support Using ASP.NET Core and Blazor

An inventory management system is essential for businesses to keep track of stock and operations. This tutorial will guide you step-by-step to create a functional inventory management app using ASP.NET Core and Blazor WebAssembly. The app will let users work offline and sync data when they reconnect to the internet. By the end of this … Read more

Building a Real-Time Task Management App with ASP.NET Core and SignalR

Building a Real-Time Task Management App with ASP.NET Core and SignalR

In this tutorial, we will guide you through the process of building a real-time task management application using ASP.NET Core and SignalR. This app will allow users to add, update, and delete tasks with real-time synchronization across all connected clients. If you’re looking to learn how to use SignalR to create interactive, real-time web applications, … Read more

How to Make SQL Server Notifications Work in ASP.NET Core

In this article, we’ll dive into setting up SQL Server notifications in ASP.NET Core using SqlDependency. SQL Server notifications are useful for scenarios where your application needs to respond to database changes, such as real-time updates for client applications. We’ll go over setting up SqlDependency, configuring Service Broker, handling common issues, and ensuring reliable notifications … Read more