This solution architecture is inspired of Clean Architecture by Robert C. Martin and with help of Vincent Dagpin Dependency Injection approaches.
- NET Core 3.1
- Entity Framework Core 3.1
- CQRS pattern with TasqR
- MiniProfiler with EFCore
- Object-Object Mapping AutoMapper
- Database Migrations
The goal of this repository is to provide a basic solution structure that can be used to build Domain-Driven Design (DDD)-based applications using .NET Core.
Migration This layer contains only DbContextModelSnapshot which was generated by migrations to keep track of changes you make to your EF models.
Core This layer contains all entities aggregates, enums, exceptions, event handlers and so on.
Application This layer contains all application/business logic and model. It is dependent on the domain layer.
Infrastructure This layer contains classes that accessing external resources particularly web services, server resources, SMTP and so on. Also, the persistence layer
WebUI The entry point of the application is the ASP.NET Core web project.
Join our discord channel https://discord.gg/GdHCtHn