I have an sfDatagrid in a wpf-MVVM pattern.
ItemsSource are bound to an ObservableCollection ( ItemsSource="{Binding BooksCollection}", SelectedItem="{Binding SelectedBook, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}".
The ObservableCollection is populated from an EntityFramework Core DataContext (BooksCollection = _context.Books.Local.ToObservableCollection();).
I face the following problem. If I update programmatically any property of the current record through SelectedItem this change is not propagated to the sfdatagrid and it is not rendered.
I found an example in your knowledge base for elementary databinding according to MVVM, but in your example, it was easy to understand that the DataModel implemented INotifProperty for all propertes of the DataModel. As in my case, data are directly loaded from sql server in code-first implementation, I haven't implemeted the NotifyProperty for the properties of the datamodel in the database.
What shall I do?