Posts

Showing posts with the label Vue JS 3

.Net + Vue.js 3 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 , EF Core InMemory database , and Vue.js 3 . 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  • Delete User We divided this tutorial into two parts.   PART 1 - Restful API Development with .Net 6 & EF Core InMemory database.  PART 2 - UI development using Vue.js 3. PART 1 - Restful API Development with .Net 6 &  EF Core InMemory database. These are APIs that .Net backend App will export: Backend project directory: User Entity Path: /Entities/User.cs The user entity class represents the data stored in the database for users. namespace WebApi.Entities; using System.Text.Json.Ser