Most MVVM examples I have worked through have had the Model implement INotifyPropertyChanged, but in Josh Smith's CommandSink example the ViewModel implements INotifyPropertyChanged.
I'm still cognitively putting together the MVVM concepts, so I don't know if:
- you have to put the INotifyPropertyChanged in the ViewModel to get CommandSink to work
- this is just an aberration of the norm and it doesn't really matter
- you should always have the Model implement INotifyPropertyChanged and this is just a mistake which would be corrected if this were developed from a code example to an application
What have been others' experiences on MVVM projects you have worked on?
I strongly disagree with the concept that the Model should not implement the
INotifyPropertyChanged
. This interface is not UI specific! It simply informs of a change. Indeed, WPF heavily uses this to identify changes, but that doesn't mean it is an UI interface. I would compare it to the following comment: "A tire is a car accessory". Sure it is, but bikes, buses, etc. also use it. In summary, do not take that interface as an UI thing.Having said that, it doesn't necessarily mean I believe that the Model should be providing notifications. In fact, as a rule of thumb, the model should not implement this interface, unless it is necessary. In most cases where no server data is pushed to the client app, the model can be stale. But if listening to financial market data, then I do not see why the model cannot implement the interface. As an example, what if I have non-UI logic such as a service that when it receives a Bid or Ask price for a given value it issues an alert (ex. through an email) or places an order? This could be a possible clean solution.
However, there are different ways of achieving things, but I would always argue in favor of simplicity and avoid redundancy.
What is better? Defining events on a collection or property changes on the view model and propagating it to the model or having the view intrinsically update the model (through the view model)?
The bottom line whenever you see someone claiming that "you can't do this or that" it is a sign they do not know what they are talking about.
It really depends on your case and in fact MVVM is a framework with lots of issues and I am yet to see a common implementation of MVVM across the board.
I wish I had more time to explain the many flavors of MVVM and some solutions to common problems - mostly provided by other developers, but I guess I will have to do it another time.
But sometimes (as in this presentation link text) model is service, which supplies application with some data online and then you need to emplement notification that new data arrived or data has changed using events...
imho i think the viewmodel implements
INotifyPropertyChange
and the model could use notification on a different "level".eg with some document service and a document object you have a documentChanged event that a viewmodel listens to to clear out and rebuild the view. In the edit viewmodel you have a propertychange for the properties of the document to support the views. If the service does a lot with the document on save (updating change date, last user and so on) you easy get a overload of Ipropertychanged events and just a documentchanged is enough.
But if you use
INotifyPropertyChange
in your model i think it is good practice to relay it in your viewmodel in stead of subscribing to it directly in your view. In that case when the events change in your model you only have to change the viewmodel and the view stays untouched.Just use the
INotifyPropertyChange
in your viewmodel and not in the Model,the model usually uses the
IDataErrorInfo
to handle the validation errors so just keep in your ViewModel and you are right on your MVVM road.Suppose that the reference of the object in your view changes. How you will notify all properties to be updated in order to show the correct values? Calling
OnPropertyChanged
in your view for all object's properties is rubbish to my point of view.So what I do is to let the object itself to notify anyone when a value in a property changes, and in my view I use bindings like
Object.Property1
,Object.Property2
and on. In that way if I just want to change the object that is currently maintained in my view I just doOnPropertyChanged("Object")
.To avoid hundreds of notifications during the loading of objects, I have a private boolean indicator that I set it to true during loading which is checked from the object's
OnPropertyChanged
and does nothing.I'd say quite the opposite, I always put my
INotifyPropertyChanged
on my ViewModel - you really don't want to be polluting your model with a fairly WPF specific feature likeINotifyPropertyChanged
, that stuff should sit in the ViewModel.I'm sure others would disagree, but that's the way I work.