I am using a Domain Service Class linked to a Linq-to-Sql Context. Using breakpoints it successfully Adds,
context.Company.Add(NewCompany);
Am calling this from Silverlight,but the saving part seems to fail...
context.SubmitChanges();
As in, I get no errors, nor does it add to the database. All my tables have a relation to each other like "Company" has a relation with "Address", did I miss a step?