I am Using the VS 2019 Version in a .NET Framework 4.6.1 WinForms project. Also I am using EF6 in Version "Latest" (6.4.4).
I created a new model, added a new entity to the model diagram and there is no "Implement INotifyPropertyChanged" property when I have the new entity selected. I have set the Model's "AutoProperty Default" to false in the hope of thus enabling the missing property on a new entity, but that does not help.
Interesting: After I added a simple "Name: String" property, a "Implement INotifyPropertyChanged" property is available when I have the property selected. It then generates the OnPropertyChanged(...) call but does not implement the EventHandler nor the OnPropertyChanged function in the generated code.
I am Using the VS 2019 Version in a .NET Framework 4.6.1 WinForms project. Also I am using EF6 in Version "Latest" (6.4.4).
I created a new model, added a new entity to the model diagram and there is no "Implement INotifyPropertyChanged" property when I have the new entity selected. I have set the Model's "AutoProperty Default" to false in the hope of thus enabling the missing property on a new entity, but that does not help.
Interesting: After I added a simple "Name: String" property, a "Implement INotifyPropertyChanged" property is available when I have the property selected. It then generates the OnPropertyChanged(...) call but does not implement the EventHandler nor the OnPropertyChanged function in the generated code.
Is there anything I am doing wrong on my side?
Regards, Bernd