I am using LINQ to SQl and using TransactionScopre I am inserting the data in SQL .
_context.tblDataContainer.InsertOnSubmit(migrationData);
using (TransactionScope ts = new TransactionScope())
{
_context.SubmitChanges();
ts.Complete();
}
doing this, does linq execute any delete statements on SQL. i have checked using context log and no delete statement is issued to database but my db admin says that i am executing some delete statements in this transaction. Any views on this?