In EntityBase2.SyncFKFields, why aren't the PropertyChanged events fired off when a foreign key changes? Is the OnPropertyChanged sub supposed to be called from somewhere else?
The events are raised in v2.0 and not in v1.x. The change was made in v2.0 because it's a breaking change: if suddenly events were raised from one build to the other, it could change behavior of the application.
How do you chnge the FK? would you please post a code snippet, that explains your issue.
Thanks
The change to the FK was by setting a related entity either by adding to a collection on one side or setting a property on the other side of an entity relation. I was just surprised to see the databinding not reflect the change in the FK
The events are raised in v2.0 and not in v1.x. The change was made in v2.0 because it's a breaking change: if suddenly events were raised from one build to the other, it could change behavior of the application.