About 50 results
Open links in new tab
  1. What is MVC, really? - Software Engineering Stack Exchange

    167 MVC is a software architecture - the structure of the system - that separates domain/application/business (whatever you prefer) logic from the rest of the user interface. It does …

  2. Is there any design pattern except MVC for web?

    The first thing to establish is what exactly you need to do, to decide whether or not a framework and/or MVC (or other design pattern) would be of benefit. Frameworks are there to provide a consistent …

  3. MVC: What is the difference between a model and a service?

    UPDATE 1 The reason I'm asking is because in Zend Framework, a classical MVC framework, everybody uses the concept of Model. Now I'm learning AngularJS and it seems that the word Model …

  4. mvc - Why put the business logic in the model? What happens when I …

    Most MVC-frameworks kind of mix all the storage/database stuff into the model in order to make it easy to store your models (often by making you extend the frameworks model-class). This is probably the …

  5. Alternative patterns for web development? (non-MVC)

    Recently I've been reading some blog posts regarding MVC and how it doesn't fit the web. I've learned about alternative patterns like the RMR Architecture. I'm curious what other patterns people are …

  6. c# - Right way of folder structure in MVC Project - Software ...

    Nov 7, 2020 · 0 I'm building a project with C# AspNet.Mvc. I'm using Entity Framework Core. It has Poco which maps in data from DB. On Mvc project itself i've got ViewModels folder where i have models …

  7. In an MVC architecture, how closely coupled are the Model and View …

    The controller controls the flow of activity. The user performs this action, the controller passes the view data to the domain which does whatever it needs to do then, based on the response (s), the …

  8. design - Why do backend web frameworks use "MVC" when they have …

    Jun 24, 2021 · In MVC, the general idea is that there is a controller that does something and in the end, produces a model that is given to a view (thus "MVC") that presents itself using the model data. The …

  9. Where should helper classes/methods for transforming business data …

    Apr 7, 2022 · Microsoft's ASP.NET MVC framework is not the only offender. Arguably the framework committing this sin originally was the Ruby on Rails MVC framework for Ruby. Folders named …

  10. mvc - Is a good practice to call a Controller function from another ...

    The role of a controller, in MVC, is to orchestrate the process: Get the relevant input from the request, Delegate to validators the task of validating/sanitizing the input, Call the relevant methods of …