I populate the GridView.DataSource from a EntityFramework Model:
gwTimeLog.DataSource = _entities.TimeLogs;
When a new row is added to the _entities, I try to update the grid (tried using the same statement as above, setting it null, then back to _entities.TimeLogs, etc...), but the grid simply won't update. Even though _entities.TimeLogs actually does contain the new rows.
What am I missing?
by adding grdPatient. Update(); and grdPatient.
The DataGridView class supports the standard Windows Forms data-binding model. This means the data source can be of any type that implements one of the following interfaces: The IList interface, including one-dimensional arrays. The IListSource interface, such as the DataTable and DataSet classes.
OLD ANSWER: Did you try calling GridView.DataBind()?
Woops, I thought this was a WebForms DataGrid.
If you're on WinForms, you might want to look into the BindingSource class. Binding to that class instead of straight to your list will provide update notification, etc.
The following code works for me:
List<Person> names = new List<Person>();
names.Add(new Person(){
FirstName = "Steve",
LastName = "Jobs"
});
names.Add(new Person()
{
FirstName = "Bill",
LastName = "Gates"
});
BindingSource source = new BindingSource();
source.DataSource = names;
dataGridView1.DataSource = source;
names.Add(new Person()
{
FirstName = "Steve",
LastName = "Balmer"
});
source.ResetBindings(false);
The answer is to have the gridview connected to the BindingList rather than the List.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With