
Creating an Application from Scratch using .NET Core and Angular
In this series of articles, I present how to create a project following good development practices, using .NET Core in the back-end and Angular in the front-end. This kind of structure that we are going to see in those series of articles you can use either for monolith applications, distributed applications or microservices applications.
Below, you’ll find all articles in the series, along with the GitHub repository containing the full source code.
Articles in the Series
Part 1 - Creating the initial structure
https://henriquesd.com/articles/creating-an-application-from-scratch-using-net-core-and-angular-part-1Part 2 - Implementing the Models and creating the Database with EF Core
https://henriquesd.com/articles/creating-an-application-from-scratch-using-net-core-and-angular-part-2Part 3 - Implementing the Service classes and the Repository Pattern
https://henriquesd.com/articles/creating-an-application-from-scratch-using-net-core-and-angular-part-3Part 4 - Implementing the API Layer
https://henriquesd.com/articles/creating-an-application-from-scratch-using-net-core-and-angular-part-4Part 5 - Implementing the SPA
https://henriquesd.com/articles/creating-an-application-from-scratch-using-net-core-and-angular-part-5Part 6 - Implementing Unit Tests for the Domain Layer
https://henriquesd.com/articles/creating-an-application-from-scratch-using-net-core-and-angular-part-6Part 7 - Implementing Unit Tests for the API Layer
https://henriquesd.com/articles/creating-an-application-from-scratch-using-net-core-and-angular-part-7Part 8 - Implementing Unit Tests for the Infrastructure Layer
https://henriquesd.com/articles/creating-an-application-from-scratch-using-net-core-and-angular-part-8
Source Code
- GitHub Repository
https://github.com/henriquesd/BookStore


