How can I force LinqToSql DataContext to consider a property dirty and submit it to the database?
in my case the property is XElement, which gets modified, but DataContext doesn't catch it, since the actual reference stays the same.
I guess I could try to assign property null or new XElement and then assign it back to the original XElement. would this be the best solution?
I am calling SubmitChanges after XElement children are modified.