I'm using LINQ on a small project and basically used the visual designer to drag tables from the server explorer in Visual Studio to the designer surface. Then I saved the DBML file and all classes were generated automatically. This included a designer.cs file for my DataContext. Everything seemed to work fine on my development machine, but when I uploaded the needed files to the production server the designer.cs file was throwing a compilation error. I noticed that the connection string name was hardcoded, so I changed it manually to the right name but there were still errors.
So my question is - how do you deploy DBML and respective auto-generated files on a production server?
