Inną opcją jest zawinięcie wszystkich wywołań Linq2Sql w TransactionScope(). Powinno to zmusić je wszystkie do działania w tym samym połączeniu.
using System.Transactions; // Be sure to add a reference to System.Transactions.dll to your project.
// ... in a method somewhere ...
using (System.Transaction.TransactionScope trans = new TransactionScope())
{
using(YourDataContext context = new YourDataContext())
{
context.ExecuteCommand("SET IDENTITY_INSERT MyTable ON");
context.ExecuteCommand("yourInsertCommand");
context.ExecuteCommand("SET IDENTITY_INSERT MyTable OFF");
}
trans.Complete();
}
// ...
Chociaż, jeśli próbujesz zrobić coś takiego:
context.ExecuteCommand("SET IDENTITY_INSERT MyTable ON");
context.MyTable.InsertOnSubmit(myTableObject)
context.SubmitChanges()
context.ExecuteCommand("SET IDENTITY_INSERT MyTable OFF");
prawdopodobnie napotkasz inne problemy, zwłaszcza jeśli kolumna tożsamości ma atrybut IsDbGenerated ustawiony na wartość true. Polecenie SQL wygenerowane przez Linq2Sql nie będzie wiedziało, czy zawierać kolumnę tożsamości i wartość.