I\'m using MVVM for my project and I\'m trying to bind a table from my database with a DataGrid. But when I run my application datagrid is empty.
MainWindow.
Here we go
Then
private ObservableCollection lecturers; public ObservableCollection Lecturers { get { return lecturers; } set { lecturers = value; this.NotifyPropertyChanged("Lecturers"); } }