On Sat, 2010-02-27 at 10:14 -0800, ProjectMoon wrote: > So, I have DbLinq generating my data context, table mappings, and so > forth.
Which DbLinq version? Trunk (which revision?)? DbLinq 0.19? > Now, from my experience with LINQ, I should only need to update > the property of an object retrieved from the LINQ query and then call > SubmitChanges() on the context. This should be how it works. > However, it's not actually changing > anything in the database. Looking at the query log, it never actually > sends any update statements. Does it do anything, according to DataContext.Log? Other than that, it should work (famous last words). It doesn't look much different from WriteTest.G9_UpdateOnlyChangedProperty() [0], and at least for SQL server the DataContext.Log states that the DB is being sent a SQL UPDATE command. It's possible that the issue is due to MySQL support. We have no current maintainers for MySQL on DbLinq, so I don't know how well supported it is. - Jon [0] http://dblinq2007.googlecode.com/svn/trunk/src/DbLinq/Test/Providers/WriteTest.cs -- You received this message because you are subscribed to the Google Groups "DbLinq" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/dblinq?hl=en.
