Using SQL Server 2008 Express, I attach the Northwind database in SQL Server Management Studio, and everything works fine.
I then disconnect the server, shut down SQL Server Management Studio, and modify the Northwind database using the following LINQ to SQL C# code:
using System.Linq;
using System.Data.Linq;
using System.Data.Linq.Mapping;
namespace LinqConsoleApp
{
class Program
{
static void Main(string[] args)
{
Northwnd db = new Northwnd(@"C:\Program Files (x86)\Microsoft SQL
Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\northwnd.mdf");
Customer testCust = new Customer();
testCust.CompanyName = "Dummy"; testCust.CustomerID = "DE1";
db.Customers.InsertOnSubmit(testCust);
db.SubmitChanges();
db.Dispose();
}
}
}
This executes without errors. When I re-open Management Studio and select the Northwind database, I get a 'database is not accessible' error message, and can't view any of Northwind's tables.
Any idea why running this LINQ code would prevent Management Studio from subsequently accessing the database?
Thanks
update:
The Northwnd class was generated automatically from sqlmetal.exe, so it does the following to connect to the MDF file when the Northwnd() constructor is called:
public Northwnd(string connection) : (connection, mappingSource)
{
OnCreated();
}
where OnCreated() does nothing, the base class is System.Data.Linq.DataContext, and 'mappingSource' is:
private static System.Data.Linq.Mapping.MappingSource mappingSource = new AttributeMappingSource();