Rebase current branch into main/dev branch in Visual Studio using git

In this article, we learn how to rebase current branch into main/dev branch in Visual Studio using git. I will show how to do it, and just follow the steps clearly.

Rebase is one of many Git utilities, and one of the two Git utilities that specializes in integrating changes from one branch onto another. The other changes integration utility is Git Merge.

View post to subscribe to site newsletter.

Read More

Angular CRUD with .NET Core API

In this article, We create a full tutorial of Angular CRUD with .NET Core API. I will show how to do it, and just follow the steps clearly. In this article we have two deferent kind of topics, first is the Angular CRUD and second is the .NET Core API.

Read More

Common Table Expression (CTE) in SQL Query

A Common Table Expression also called CTE in short form, is a temporary named result set that you can reference within a SELECT, INSERT, UPDATE, or DELETE statement. The CTE can also be used in a View. In this article, we will see in detail how to create and use CTEs from our SQL Server.

Read More