On my WinForm, I bound my listbox to a Table in Entity
on EDMX, but when the table data is changed, I tried to call
myListBox.DataSource = Entities.table;
myListBox.ResetBindings();
myListBox.Refresh();
but nothing happens in ListBox
. The Entities.table
object holds the right data though, it just doesn't reflect on the ListBox
.
Any idea??