Modular enterprise architecture using MVC and Orchard CMS
I’m making a large scale MVC application using Orchard. And I’m going to be separating my logic into modules. I’m also trying to heavily decouple the application for maximum extensibility and testability.
How should I architect my Model and Data Access layer objects in my website?
I’ve been tasked with designing Data layer for a website at work, and I am very interested in architecture of code for the best flexibility, maintainability and readability.
What is the difference of delegator and dispatcher?
What is the difference of delegator and dispatcher?
PyQt application architecture
I’m trying to give a sound structure to a PyQt application that implements a card game. So far I have the following classes:
MVC Can the model know ANYTHING about the view?
I’m working on a game, and without getting into any details I am using MVC “patterns”, “rules” or whatever you want to call it to make the game.
Where is it permissible to add logging code in a MVC model?
Working on a C# WinForms program that is written in a MVC ( actually Model-View-Presenter) style and I want to add a few lines of code that is responsible for logging some events. Where should I write two or three lines of code that I need? Should I write it in the Presenter section?
Model-View-Controller (MVC) Which component handles save/load operations?
In a traditional MVC application, which component (model, view, or controller) is responsible for reading/writing the model to/from disk?
ASP.NET MVVM Handling multiple Data Transfer Objects on a single page
I have an asp.net mvc “edit” page which allows the user to make edits to the parent entity, and then also “create” child entities on the same page. Note: I’m making these data transfer objects up.
In MVC , DAO should be called from Controller or Model
I have seen various arguments against the DAO being called from the Controller class directly and also the DAO from the Model class.Infact I personally feel that if we are following the MVC pattern , the controller should not coupled with the DAO , but the Model class should invoke the DAO from within and controller should invoke the model class.Why because , we can decouple the model class apart from a webapplication and expose the functionalities for various ways like for a REST service to use our model class.
PHP MVC error handling, view display and user permissions
I am building a moderation panel from scratch in a MVC approach and a lot of questions cropped up during development. I would like to hear from others how they handle these situations.