I am writing and ASP.NET MVC application with SQL Server 2008. Unfortunately, the only way I can connect to that database is through a dsn or ODBC in my production environment. In development I have used a Linq2SQL layer to access data in the database. Is there a way that I can force Linq2SQL to use ODBC for connectivity rather than a SQL Client connection?
I am writing and ASP.NET MVC application with SQL Server 2008. Unfortunately, the only
Share
The code generated by LINQ to SQL has hardcoded references to SQL server connections all over the place, so no. However, you may be able to use DBLinq.