19
votes
LINQ to SQL - where does your DataContext live?
The guidelines from the MSDN documentation on the DataContext class are what I would recommend …
7
votes
How can you see the sql that is causing an error on SubmitChanges in LINQ to SQL?
A simple way to do this is to use the DataContext.Log property:
using (MyD …
7
votes
.net SqlConnection not being closed even when within a using { }
The SqlProvider used by the LINQ DataContext only closes the SQL connection (through SqlConnectionManager.DisposeConnection) if it was the one to open it. If …
