vote up 25 vote down star
40

I understand the basics of the Model-View-ViewModel pattern or as Dan Crevier calls it the DataModel-View-ViewModel pattern and I understand that it is a good approach to design WPF based applications. But there are still some open question. For example: Where do I put my business logic where my validation logic? How do I decouple the Database (in a way that the underlying storage solution can easily be exchanged) from the Model but still be able to do complex datamining? How do I design the ViewModel that it can observe statechanges in the Model?

Do you know of any applications that use this pattern that I could study for evaluate differnet approaches? Preferably ones where the sourcecode is available?

Or maybe you even know of articles, books, blogs, websites that go a bit more into detail?

flag

10 Answers

vote up 19 vote down check

I am still exploring these patterns myself, but I would point you to the Stock Trader reference implementation inside of Prism (aka the Composite Application Guidance for WPF).

Prism calls the pattern 'Presentation Model'. You can find more info about Prism from Glenn Block's blog and Brian Noyes' blog. Here also, is the MSDN link to the Presentation Model in Prism.

I know that Blend also uses the M-V-VM pattern extensively. It is too bad that the Blend source code isn't open to all.

Finally, don't miss this blog post which points to a video done by Jason Dolinger on M-V-VM. It's excellent and highly recommended. My blog also has sample code to follow along the video with.

Update

I just wanted to add to this post all the links/posts that I have discovered on this topic:

  1. Dan Crevier's series on Data Model-View-View Model
  2. John Gossman's series on Model-View-View Model: 1, 2, 3, 4, 5, 6
  3. Julian Dominguez (from the Prism team) has three posts of interest: 1, 2, 3
    In the third post, he has a little sample application that shows off Presentation Model with DataTemplate(s).

Update #2

Josh Smith just published an excellent article on M-V-VM for MSDN Magazine. It comes with some sample code too!

link|flag
The presentation Model of PRISM is in reality a passive view (the presenter knows an interface that represents the view) and a presentation model of Martin Fowler (All the data of the view are stored inside the presenter, and synchronized with the view). MVVM is only the presentation model of MF. – Nicolas Dorier Feb 27 at 10:08
Jason Dollinger's video is excellent. Highly recommended. – goap Apr 30 at 15:22
vote up 2 vote down

See this very informative post from Karl - http://karlshifflett.wordpress.com/2008/11/08/learning-wpf-m-v-vm/

link|flag
vote up 0 vote down

Another very interesting read: A discussion from the WPF disciples group: Thought: MVVM eliminates 99% of the need for ValueConverters

link|flag
vote up 10 vote down

Jason Dolinger has a great (long) screencast of MVVM

http://blog.lab49.com/archives/2650

link|flag
That screencast is a great intro to MVVM – Wilka May 20 at 11:02
vote up 3 vote down

Josh Smith has put together one of the best implementations of M-V-VM in his Crack.NET project. All of Josh's projects are good, but this one is outstanding.

link|flag
vote up 0 vote down

I just blogged about this in Presentation Model Without INotifyPropertyChanged. This is a technique that you can use to implement the M/V/VM pattern without writing any bookkeeping code. You don't need to implement INotifyPropertyChanged. You can bind directly to plain-old .NET code in your View Model, and it will update when your Data Model changes.

link|flag
vote up 1 vote down

Hi,

I'm researching MVVM myself right now, so I have a few additional references to offer. Jeremy Alles recently published a "Very Simple M-V-VM Demo Application", then there's Josh Smith's WPF apps with the Model-View-ViewModel design pattern in MSDN Magazine and Karl Shifflet's Channel 9 show about MVVM. And last but not least Jaime Rodriguez' just released his very nice M-V-VM training day sample application "Southridge Realty".

link|flag
vote up 0 vote down

Hello, I would like to share with you some recent web activities that may shed some new light on the question:

link|flag
vote up 0 vote down

Mark Smith has a great helper library for MVVM/WPF usage here

link|flag

Your Answer

Get an OpenID
or

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