propertychanged

Entity Framework 4 - How to inject logic in property setter?

I have a property auto-generated from database in my edmx: Description. I then create a "partial class" .cs file for the entity and add a read-only property: ShortDescription. ShortDescription's getter simply processes Description (removes line feed, carriage return, etc). How can I raise property change notification for ShortDescript...

Where is implementation of PropertyChanged EventHandler?

Im a bit confused. I dont understand what code is actually is executed when I implement INotifyPropertyChanged interface. As i imagine the chain goes like this: My class impliments INotifyPropertyChanged=> Every property`s setter calls NotifyPropertyChanged method=> PropertyChangedEventHandler invokes=>??? And i wonder what code ...