vote up 17 vote down star
12

Hello, I am developing applications with MVVM model, but I reached a point where not which framework should I use?

Among the possible options are

  • MVVM Toolkit
  • MVVM Foundation
  • WPF Application Framework (WAF)
  • Light MVVM
  • Cinch
  • Prims

In your experience which is better?

flag

+1 - Good question, but please clarify 'better'. Different frameworks provide different advantages, the best depends on your requirements. Look forward to the answers :) – Russell Sep 11 at 7:58
Well it would be very good that you can use with WPF and Silverlight, and with a minimal learning curve. – Rangel Sep 11 at 8:09
2  
You might want to check out Caliburn too. codeplex.com/caliburn – Kent Boogaart Sep 11 at 8:46
Sorry Kent. How could I forget Caliburn? – Pete OHanlon Sep 11 at 8:59

5 Answers

vote up 26 vote down check

It really depends on what you are trying to achieve, and how much infrastructure you want in place already, plus the ease with which you can find samples that help you out. I'm going to declare an interest here, because I've been actively involved in at least one MVVM framework, and I've had input into others through the WPF Disciples group, so I'm a little bit biased. Saying that, here goes:

Microsofts MVVM Toolkit - this is still very much in the alpha stages. When it was originally released, it took a bit of a savaging from the Disciples because of what it didn't do. Saying that, MS is looking to beef this framework up so it's one to watch - it's just not ready yet.

MVVM Foundation - ah Josh Smith's version of the framework. Josh is one of the daddies of MVVM, and has been a huge advocate and teacher of the pattern. As a result, a lot of what you'll find in other frameworks has Josh's fingerprints all over it. This framework is intended to provide the basics of MVVM, and not to address some of the more esoteric issues. Originally this was intended only for WPF, but people such as Laurent Bugnion and myself have added functionality/projects that mean this will be a Silverlight compatible framework as well.

WAF - no experience of it, so I can't comment on it I'm afraid.

MVVM Light - Laurent Bugnion's take on it, and just updated to version 2. This is a very good framework, but again it's not intended to cover every single aspect of MVVM applications. Given Laurent's background, it has very strong Silverlight and Blendability support in it.

Cinch - Sacha Barber's excellent WPF only MVVM framework. This covers more ground than the frameworks I've talked about above. It's an excellent framework, and takes advantage of concepts covered in Bill Kempf's excellent Onyx project. Onyx is intended to complement MVVM frameworks, and adds in functionality that's typically been hard for people to do in MVVM/WPF. Again, originally intended to be WPF only, Onyx has progressed to include SL compatibility - work I am particularly proud to have been involved in.

Prism - Again, I've never used it, but I've heard a lot of good things about it.

Ocean - Karl Shifflett, Program Manager on the Cider team, recently released a fully featured WPF MVVM framework. Again, this is an excellent framework and has lots to recommend it.

The bottom line is, download the different frameworks take a look at them and work out which one fits most intuitively with the way you think and with your requirements. If you think that you might want to support Silverlight from the same codebase then the WPF only frameworks should be discounted.

link|flag
+1, great answer. which one you are using in your daily work? – Jirapong Sep 11 at 8:43
2  
I use one that we wrote, because we have very specialist needs for MVVM. It's heavily influenced by the work that Josh did, and I'll be releasing it as Open Source in the near future (I'm busy ripping out the proprietary bits). It's called Goldlight. – Pete OHanlon Sep 11 at 8:51
1  
Thanks, great answer. – Rangel Sep 11 at 10:22
Along with that, what is your data access layer framework? guys.. LINQ, LLBLGen, EF, nHibernate? – Jirapong Sep 11 at 11:05
It depends on the project and requirements. Sometimes we use LINQ, sometimes NHibernate, sometimes Castle ActiveRecord, and sometimes eXpress Persistent Objects. – Pete OHanlon Sep 11 at 11:48
vote up 5 vote down

Also look at:

Caliburn & Onyx!

link|flag
vote up 1 vote down

I try to describe the Frameworks missing in Pete’s great answer:

MVVM Toolkit (Microsoft)[ 1] is a very lightweight library with Visual Studio project templates that should support beginners with this pattern. If Microsoft gets good feedback for their Toolkit then they might implement this as a new Visual Studio (maybe 2010) project template.

Prism (Microsoft p&p)[ 2] is a framework that provides more than the support for the MVVM pattern. The main goal of this project is to help you to build modular WPF and/or Silverlight applications. When you just need to implement the MVVM pattern or you are a beginner in .NET/WPF I won’t recommend this project. Note: This project uses the term PresentationModel for the MVVM pattern. But they are identical. See also: Link[ 3].

WPF Application Framework (WAF)[ 4] is a lightweight framework that helps you to create WPF apps with MVVM. It’s just for WPF and so it doesn’t support Silverlight. It goes a bit another way than most other MVVM frameworks with the introduction of Controllers[ 5]. They are responsible for the application workflow and they mediate between various ViewModels.

Links

  • [ 1] http: //www.codeplex.com/wpf/Release/ProjectReleases.aspx?ReleaseId=14962
  • [ 2] http: //www.codeplex.com/CompositeWPF
  • [ 3] http: //msdn.microsoft.com/en-us/library/dd458863.aspx
  • [ 4] http: //waf.codeplex.com/
  • [ 5] http: //waf.codeplex.com/Wiki/View.aspx?title=Model-View-ViewModel%20Pattern
link|flag
vote up 0 vote down

Would it be fair to say that WPF Application Framework (WAF) is a lightweight version of the Composite Application Guidance (Prism) block?

link|flag
vote up 0 vote down

If you're looking for Extensibility (the ability to write add-ins) on top of a WPF/MVVM application framework, then you may be interested in SoapBox Core disclaimer: I wrote it. It's open sourced, so even if you don't use it, there might be some good ideas in there for you. It uses MEF for both Extensibility and IoC.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.