| Advantages and Disadvantages of MVC model
Below are the most important advantages and disadvantages of MVC
Advantages
(1)All the classes and Object here in MVC are independent of each other.
(2)It is very easy to manage and maintain the MVC.
(3)In MVC model development progresses in parallel.
(4)Each MVC object has different responsibilities.
(5)WIth the help of MVC it will clearly split business logic and presentation logic.
(6)Multiple developer can work at a time without effecting other developers.
(7)It helps in TTD so testing like unit test can easily be added to the application.
(8)MVC also Support default responsive web site and mobile templates in Latest version.
(9)We can create our own view engine with compare ti traditional view engine.
Disadvantages
(1)We cannot saw the design page preview liek .aspx in asp.net
(2)To do parallel development we need multiple experts programmers.
(3)The Model pattern is little complex.
(4)WIth modern user interface its quite difficult to use MVC.
(5)Data access in view is inefficient.
(6)We need to understand so many technologies to work on MVC. | | |