MMM
MMM

Reputation: 321

Silverlight MVVM vs NON-MVVM

I'm about to optimize a silver light application, and it's made with some MVVM and some regular code(code behind) so my question is, should i continue the MVVM pattern, or should i just go all out on code behind, logic classes and so on?

The application is just for showing statistics, so it's receiving some data from an SQL DB, and then showing them in some charts and so on.. so thats really it..

what do you think MVVM or no MVVM?

Upvotes: 1

Views: 53

Answers (1)

Ken D
Ken D

Reputation: 5968

For this application, I think MVVM is an overkill, I have used MVVM thoroughly and I can tell you, it is great when you have those typical CRUD scenarios but for an application such as this, I would go with Non-MVVM

Upvotes: 1

Related Questions