Hi:
I have a data grid connected to a collection view, when I update an object of entity framework the grid doesn't reflect the change Until I force reorder or something similar. The code that I'm using to edit is:
Cliente cliente= db.Clientes.Find(1);
cliente.Nombre = "SS";
db.SaveChanges();
I have the same problem if IConnect itemsource directly to a List or an observable collection:
listaClientes = db.Clientes.ToList();dbGrid.ItemsSource = listaClientes;
Thanks in advance