The following code seased to work.
db.DBUsers.InsertOnSubmit(new DBUser
{
AllTheStuff = valuesBeyondYourWildestDreams
}
);
db.SubmitChanges();
My guess is something changed at the database and the submit is failing because the mapping is off.
As the linq visualiser isn't working for me (bonus points for fixing that) I want to find another way to know what exactly is going wrong and why the submit is failing silently.
Update
I tried using
db.SubmitChanges(ConflictMode.FailOnFirstConflict);
to get an exception, but it seems the submit works. Except that there is no actual new entity in the database.