I could really use an event that fires when a related entity is set. Should setting a related entity trigger the PropertyChanged event being that it is a property on the entity?
V2 has these: OnRelatedEntitySet and OnRelatedEntityUnset
Yes, but they are not public events that an external object could subscribe to..
No, protected methods. So in order you override the method so you know when the associated customer changes.
Answer wrote: Yes, but they are not public events that an external object could subscribe to..
Answer wrote:
You could always create public events and raise them in the Entity.
Bob