What architecture is good for implementation in this project?

I am new to architecture. I have an MVC web application project and I want to use the FIRST EF code. I want to use architecture for this project. I want to use DDD (Domain Managed Project), but it is for a large project. I want a simple DDD that supports this in my project: 1-repository 2-IOC template 3-service level what is your suggestion for me, if anyone offers an architecture or a sample architecture, this will be more useful to me.

-3
source share
1 answer

Create a new MVC project, and then install CodePlanner from nuget.

Install-Package CodePlanner 

This will give you the architecture you are looking for. Then follow the instructions in the readme.txt file ...

This will give you the opportunity to use DDD and will generate all the code except the business logic (of course).

You can see a demo of how to use it here (11:40 in the video)

+4
source

Source: https://habr.com/ru/post/1492052/


All Articles