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

Create SQL Views

A Views in SQL are kind of virtual tables. A view also has rows and columns as they are in a real table in the database. We can create a view by selecting fields from one or more tables present in the database. A View can either have all the rows of a table or specific rows based on certain conditions. Views are virtual tables that can be a great way to optimize your database experience. Not only are views good for defining a table without using extra storage, but they also accelerate data analysis and can provide your data extra security.

Read More