Is INotifyPropertyChanged only for the presentation layer?
Posted
by D.H.
on Stack Overflow
See other posts from Stack Overflow
or by D.H.
Published on 2010-04-14T12:05:37Z
Indexed on
2010/04/14
12:13 UTC
Read the original article
Hit count: 254
The INotifyPropertyChanged is obviously very useful in the view model for data binding to the view. Should I also use this interface in other parts of my application (e.g. in the business layer) when I want notifications of property changes, or I am better off using other notification mechanisms? I realize that there is nothing stopping me from using it, but are there any reasons that I shouldn't?
© Stack Overflow or respective owner