Though, i'm still a novice for ASP.NET MVC, my manager asked me for a report about ASP.NET MVC's productivity. Actually we are planning to develop a real life, kinda big system using ASP.NET MVC. The questions are:
1- Is it really goona scale for a fairly large system?
2- Is it goona be easy for developers to pick up in a short period "weeks"?
3- Are there any real life systems that are built using ASP.NET MVC? "Except for NerdDinner"
4- How can MVC save some developing time over ASP.NET?
|
|
|||
|
|
|
If by productivity your manager really means "how long will it take to write feature X?" then quite possibly you will not be as productive in the short term with ASP.NET MVC. However, the much better seperation of concerns in the framework, when compared to webforms, means it is much easier to test and write well structured code for. This will give you improved long term productivity but probably at the expense of short term productivity. If you can get your manager to see past this then you're on to a winner. Good luck with that one! To answer your direct questions:
|
||||
|
|
To answer #3 - yes, you're using one right now :o) What Was Stack Overflow Built With? |
|||
|
|
|
|||
|
|
|
The most interesting question in my opinion is #4 - how can using ASP.NET MVC save development time? It can, by allowing you to build an application framework, upon which all your features and functionality is built. Ayende has a really interesting post about this. I think many ASP.NET MVC developers will agree with me that ASP.NET MVC is by no means ready for building features of complex applications - you must put some effort into fitting the framework to your application, and only then can you begin to actually gain an advantage from using it. |
|||||||||||
|
|
It definitely scales. But productivity compared with webforms? Unless you are really bad at webforms, it's no brainer that webforms are light years faster in RAD terms. Yes, nice TDD for ASP.NET MVC, but you have to realize that you are testing a lot of stuff which are built-in with webforms such as gridview, and all those nice drag-drop custom controls. You save big time not have to test those built-in controls when you are doing webforms while in MVC you crank up your own and yes you better write tons of more code to test them. So the gain on testability is really an illusion. I will not jump into MVC until I see something similar to gridview type of RAD. It also helps if you know CodeSmith and you can automate all the tedious, repetitive code in MVC. TDD code once, then create a CodeSmith template, then you just generate your code. |
|||
|
|
|
I have many years of experiences in ASP.NET web form application development, so I can do that pretty fast. I have tried ASP.NET MVC, and I like the architecture, but I can't be very productive in it. As my manager pressures me for the deadlines, often times I have to choose ASP.NET web form. |
|||
|
|