amateur
amateur

Reputation: 44605

separate MVC project in to different projects?

I am working with asp.net mvc project for a while now and have wondered something recently. Should my controllers and models and event the views be split out in to separate projects?

This is to enable total separation of the ui layer of the application. The project I am working will be a large scale application.

Opinions on this?

Upvotes: 0

Views: 178

Answers (1)

Mathias F
Mathias F

Reputation: 15891

This is to enable total separation of the ui layer of the application

No, MVC is the frontend layer and if you want to separate the frontend from the rest of the application then leave the folders as they are and have separate projects that act as the other parts of your application. These other projects are typically dataaccess layer, business layer and domain object layer.

Upvotes: 1

Related Questions