I\'m thinking about trying out MVC later today for a new app we\'re starting up, but I\'m curious if it\'s an all or nothing thing or if I can still party like it\'s 2006 wi
If you're mixing MVC with other methodologies you're not really getting the benefit out of it. The point of MVC is to allow you to decrease coupling and increase cohesion, and if only half of your code is doing that, then the other half is inevitably going to restrain your development cycle.
So, I guess while it's possible, I don't think it's worth it. Go all the way or don't go at all.