This LINQ bug is almost as awful as the rich text editor on this forum... Anyways..... I have two tables in a database. One of them, when I update values and call SubmitChanges, is fine. The updates go to the DB. The other, nothing happens. And the code for them is very similar. It takes the form below. This is straight-up bad: TestMetal.TestContext db = new TestMetal.TestContext(...); var T1 = (from l in db.Test1 where l.Name=="test str" select l).First(); var T2 = (from f in db.Test2
Read More...