A good point to ponder over; is this really so ?
http://www.codeproject.com/Articles/552846/Why-s-How-s-of-Asp-Net-MVC-Part-1
Design Patterns in MVC
Even though MVC is design pattern itself, the entire MVC framework contains some design patterns itself. Below is a list of design parrens used in MVC (or Asp.Net MVC) regardless the platforms. Detaild description of these patterns in MVC are out of the scope of this post, I am sure you can google and could know much more about them.
Front Controller | Consolidates all request handling by channeling requests through a central controller. |
Strategy | The View-Controller relationship, The way conroller hookup view at runtime. |
Factory Method | Specify the default controller class for a view |
Decorator | In the context of MVC, decorator could fit into your views. |
Observer | One Model, Multiples views ( observers/subscribers ), and the publisher manages the communication |
Mediator | Several different Models, Several views, and the mediator manages the communications between them. |
No comments:
Post a Comment