How to implement Real-time notification using SignalR

implement Real-time notification using SignalR

In this article, we will learn How to implement Real-time notification using SignalR in ASP.NET Core 6.0. We will implement a simple chat application and integrate SignalR to handle the communication. What is SignalR Core SignalR Core is a library for .NET developers that simplifies the process of adding real-time web functionality to your applications. … Read more

How to Use RabbitMQ in ASP NET Core

In this tutorial, we will learn How to Use RabbitMQ in ASP NET Core. To do that we will create a simpleASP.NET Core web API and a Console app for the client Application. Introduction What is a message broker? To understand what a message broker is let’s take an example of a post office. A … Read more

How to use MongoDB with ASP NET Core Web API

How to use MongoDB with ASP NET Core Web API

In this article, we are going to learn How to use MongoDB with ASP NET Core Web API. To do that we will create a basic CRUD functionality using ASP.NET Core Web API with MongoDB as our database. Related Topic: ASP.NET Core 6 using Firebase What is MongoDB? MongoDB is a document-oriented NoSQL database used for … Read more

Crud Operation in Flutter using Firebase

Crud Operation in flutter using Firebase

In the previous post, we created a simple project Flutter login and registration using Firebase, this time we will make a simple Crud Operation in flutter using Firebase. We are going to implement a CRUD(create, read, update and delete operations) with Firebase FireStore Database. What is FireStore Database? Firestore is a document-oriented database that provides … Read more

ASP.NET Core CRUD Operation with Firebase Database

In this tutorial, we will learn how to implement ASP NET Core CRUD Operation with Firebase Database. We will create a basic ASP.NET Core 6 web application that will use the firebase Real-Time Database. What is a CRUD? CRUD is a computer programming acronym that stands for create, read, update, and delete, and it refers … Read more

How to host a website in local IIS in windows 10

how to host a website in local iis in windows 10

In this tutorial, we are going to learn how to host a website in local IIS in windows 10. IIS or Internet Information Services are used to host ASP.Net Web applications to either show your development progress for a client or for a test run of your websites. If you are a freelancer and want to show … Read more

How to Integrate Firebase in ASP NET Core MVC

Integrate Firebase in ASP NET Core MVC

In this tutorial, we are going to learn how to Integrate Firebase in ASP NET Core MVC and make a simple Asp.net Core MVC 6 app using Firebase sign-in provider. Firebase is a mobile application development platform created by Google and is used to build and grow apps. It is great for integrating authentication based on social networks, email, or phone numbers into your client app. Whether you are building a web app or a mobile app, firebase provides one of the easiest ways to authenticate users so that they can log in to your application and access content. Before … Read more

Encapsulation in CSharp

C# encapsulation

The process of encapsulating one or more elements within a physical or logical container is characterized as encapsulation. Encapsulation prohibits access to implementation details in object-oriented programming. C# also has a feature called abstraction, which is related to encapsulation. Abstraction is a technique for concealing undesired information. Encapsulation, on the other hand, is a way … Read more