Posts

Showing posts with the label .Net 6

.Net + Microsoft SQL Server + Angular 15 CRUD Application Example

Image
In this section, we will learn how to develop a full-stack web application that is a basic User Management Application using  .Net 6 ,  Microsoft SQL Server ,  Microsoft Entity Framework Core provider for SQL Server , and  Angular 15 . You could download the source code from our Github repository, the download link is provided at the end of this tutorial. After completing this tutorial what we will build? We will build a full-stack web application that is a basic User Management Application with CRUD features:  • Create User  • List User  • Update User • View User • Delete User We divided this tutorial into two parts.   PART 1 - Restful API Development with .Net 6 & Microsoft SQL Server. PART 2 - UI development using Angular 15. PART 1 - Restful API Development with .Net 6 &  Microsoft SQL Server. These are APIs that .Net backend App will export: Create database and table. First, you need to create a database in the Microsoft server.  CREATE DATABASE testdb; Create table: CRE