Deploying a project using LINQ to SQL - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T19:30:20Z http://stackoverflow.com/feeds/question/49260 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/49260/deploying-a-project-using-linq-to-sql 1 Deploying a project using LINQ to SQL TheoJones 2008-09-08T07:15:17Z 2008-10-02T08:50:44Z <p>I am working on a winforms application using LINQ to SQL - and am building the app using a SQL Express instance on my workstation. The final installation of the project will be on a proper SQL Server 2005. </p> <p>The database has the same name, and all tables are identical but the hostname is different. </p> <p>The only way I have found to make my app work from one machine to the next is to re-open the code in Visual Studio, delete all of the objects referring to the SQL express instance from my .mdbl, save the project, connect to the other server, drag all of the references back on, and rebuild the application for release once more.</p> <p>an answer here suggested that one can simply modify the app.config/web.config file - whih would work for asp.net, but this is a winforms application. What's the correct way of making LINQ to SQL apps use a new database without having to re-open the app in visual studio?</p> http://stackoverflow.com/questions/49260/deploying-a-project-using-linq-to-sql/49265#49265 2 Answer by Omer van Kloeten for Deploying a project using LINQ to SQL Omer van Kloeten 2008-09-08T07:26:04Z 2008-09-11T20:50:36Z <p>If I understand your problem correctly, you simply change the database's connection string in your app.config / web.config.</p> <p><strong>Edit</strong>, post clarification: You have the connection strings stored somewhere. They might be in the app.config of your server. Still, you get them from somewhere and that somewhere may be in an app.config. Use that then :)</p> http://stackoverflow.com/questions/49260/deploying-a-project-using-linq-to-sql/49365#49365 0 Answer by VanOrman for Deploying a project using LINQ to SQL VanOrman 2008-09-08T09:28:12Z 2008-09-08T09:28:12Z <p>I believe you can store the connection information in an app.config file and retrieve it from there. <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=3716857&amp;SiteID=1" rel="nofollow">Here</a> is a post about doing that with LINQ to SQL. Once you deploy it to a production server, you can just edit the XML to change the data source.</p> http://stackoverflow.com/questions/49260/deploying-a-project-using-linq-to-sql/108548#108548 1 Answer by KevDog for Deploying a project using LINQ to SQL KevDog 2008-09-20T15:52:11Z 2008-09-20T15:52:11Z <p>One good solution is to add another connection to the dbml file itself. You can get to this by right-clicking on the field of the design surface and selecting properties. From there, you can add another connection string. Instead of deleting everything and redragging, just change the string and recompile.</p> <p>But if you want to get fancy-schmancy, you can have the program auto-detect whether it is being run locally or not, using this neat utility function: <a href="http://dotnetperls.com/Content/Local-Detect.aspx" rel="nofollow">detect local</a></p> <p>And go from there to set the appropriate connection string based on the results.</p> http://stackoverflow.com/questions/49260/deploying-a-project-using-linq-to-sql/161413#161413 1 Answer by TheoJones for Deploying a project using LINQ to SQL TheoJones 2008-10-02T08:50:44Z 2008-10-02T08:50:44Z <p>A more useful answer...</p> <p>app.config ends up as appname.exe.config when it has been built.</p> <p>rather than opening Visual Studio and modifying app.config, you can simply edit the appname.exe.config file, and restart the app.</p>