by yaakov on 3/19/09, 10:19 AM with 23 comments
by CarlHoerberg on 3/19/09, 2:12 PM
Visual Studio + asp.net mvc is a highly efficient dev. enviroment.
by misterbwong on 3/19/09, 6:53 PM
Despite the difficulties, I've been encouraged by the flexibility of MVC and am thinking about making it my framework of choice for my coming projects.
IMO, the best bits of MVC are:
-Separation of concerns. No more mixing business logic with the presentation ("view") layer. I can swap out layers of my architecture more easily
-More control over page elements. I always found the ASP.NET controls a bit lacking...
-Leaner apps. I understand that this is mostly the developer's fault as there's always a way to do things better, but most of the apps I've seen written in webforms just feel bloated. There's too much cruft built into and around webforms to make it seem desktop-y
-Better support for TDD. I've not used this part of it yet, but the MVC model does lend itself to TDD much better than webforms.
I'm not saying that WebForms will be completely gone from my development cycle, though. It is still good for many things. I think the most glaring benefits are:
-Rapid development for internal/quickie apps. This may just be my experience and familiarity talking but it's very easy to throw up a quick and dirty app with webforms. Great for internal projects.
-Legacy applications. This benefit will fade over time, but I was hearing that there were problems with MVC on II6. Also, I don't believe it's supported on any version below II6.
by rlm on 3/19/09, 1:19 PM
by wayne on 3/19/09, 4:00 PM
The annoyances:
- ActiveRecord has its downsides but it's easy to use and ASP.NET MVC doesn't come with a similar ORM. LINQ is awkward to learn.
- It doesn't have view partials.
by jpcx01 on 3/20/09, 1:59 AM
Still, I've gone through this and its very well architected. Not going to get me to switch back to ASP.NET from Rails/Merb, but its nice to know that some people at Microsoft finally understand how to build a well built web development framework.
by cdeutmey on 3/19/09, 7:15 PM
by c0un7d0wn on 3/19/09, 7:56 PM