tags:

views:

486

answers:

4

I really like the fact that Microsoft has taken a commitment to bring MVC to the Web. To this end, I have become excited about converting one of my existing ASP.NET apps to MVC and wanted to know if I may be jumping the gun. While this site is using MVC, it's still technically in beta...what are your thoughts?

+6  A: 

Since Stack Overflow is written in asp.net mvc and it's in production, it looks like it's production ready :)

Alan
Nice answer, I like it.
Chris Sutton
It's public beta ready at least. :)
Matias Nino
A: 

I re-coded my site using the Preview 5 of ASP.NET MVC and I completely fell in love with it. I would not, however, convert any existing applications to it until it's in Go-Live. Too much could possibly change...

muloh
It is "Go live" right now, otherwise SO wouldn't be able to use it. It's still pre-beta, but it has a go live license.
John Sheehan
Thanks for pointing that out, John. I should've known that!
muloh
+1  A: 

Yes, it is built on the foundation of ASP.NET (caching, authentication, etc) so it isn't having to deal with rewriting/stabilizing all those lower level pieces.

I have it in production and it has been very solid from a runtime perspective.

Chris Sutton
+7  A: 

From Preview 5 to RTM, there will be less and less breaking changes. So if the concern is how much churn your project will face, it shouldn't be as bad as it was with earlier releases.

If the concern is support, we do ship the source code and you're allowed to modify (but not redistribute) the source for your own needs. In most cases, we've heard from customers that they didn't have to change the source to work around bugs, instead opting to use our extensibility hooks.

Haacked