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...