This is to demonstrate basic CRUD of customer entities using .net core and angular
Download and install Node.js from Node.js website. npm is included with Node.js.
Run the following command in your terminal:
npm install -g @angular/cli
Navigate to your Angular project directory and run:
npm install
Run the Angular application with:
ng serve
Access the application at http://localhost:4200
.
Ensure you have the EF Core CLI installed by running:
dotnet tool install --global dotnet-ef
In your .NET Core project directory, create a migration with:
dotnet ef migrations add InitialCreate
Apply the migration to your database with:
dotnet ef database update
Make sure you have the .NET Core SDK installed, which can be found on the .NET website.
Navigate to your .NET Core project directory and run:
dotnet run