vote up 1 vote down star

I have a WPF DataGrid with some data. You can add rows through a separate window. The DataContext is the same, a LINQ-to-SQL object. Binding is also the same, I bind the "ItemsSource" property to a table.

In the other window, when the user clicks on "Save", I create a row programatically and add it using "InsertOnSubmit". After that I use the DataContext's "SubmitChanges" method.

My problem is that the DataGrid isn't updated. If I restart the application I can see the new row, so it's in the database, but I couldn't find a way to refresh the DataGrid.

So far I've tried to use "UpdateTarget" on the BindingExpression of the DataGrid, but it didn't help. I've also tried "dataGrid.Items.Refresh()" — same result. How can I fix this?

flag

4 Answers

vote up 2 vote down check

The reason it's not updating is that LINQ-to-SQL doesn't implement INotifyCollectionChanged, so WPF has no way to tell that the ItemsSource has been updated. The least terrifying way to fix this, is to copy your LINQ-to-SQL results to an ObservableoCollection - when you do the Insert, also add to the observable collection. Then you'll see the update.

link|flag
Your solution is obviously working. I just thought I could get away with simple XAML binding markup. – KovBal Jun 2 at 19:20
vote up 0 vote down

Try setting your DataGrid's DataContext to null, and then resetting it to your LINQ-to-SQL object. I've come across a similar problem, and this seemed to do the trick. Good luck!

link|flag
I've tried that, the DataGrid raises the DataContextChanged event, but I still can't see the new row... – KovBal May 31 at 18:57
vote up 1 vote down

The problem is that you need to refresh your LINQ-to-SQL DataContext. The DataContext's won't properly recognize the new row even after a submit changes. You need to dispose the DataContext you have and create a new one. In most cases DataContext should be used for one short operation and not as a long standing object.

link|flag
Your solution is very similar to Pwninstein's. Unfortunately the result is the same, as the DataContextChanged event doesn't make the DataGrid refresh. – KovBal Jun 1 at 15:43
vote up 0 vote down

Or just invoke the search code again (usually the search button)> I have solved it in my case like this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.