Reputation: 13591
When using ASP.net webforms my usual solution would have following type of setup -
When using ASP.net MVC, I have used this kind of solution breakdown -
Question In an AP.net MVC setup how do I wire up my DomainObjects/DTO/POCO and the WCF/Web Service layers?? Do I lose out on any features if I want to keep the solution like I used for WebForms??
Upvotes: 0
Views: 154
Reputation: 1544
The ASP.NET MVC project should only differs in Web Project, everything else should remain the same. In web project the regular page you have in Web forms application will now split into controller and view.
Upvotes: 2