in my app, transaction scope is there, inside that i'm doing all copying operation to dc object and finnally dc.submittchanges() will be performed.
Will the transaction scope locks down the table present in dc?, will this cause any deadlocks?
Eg:
using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required, TimeSpan.FromSeconds(30)))
{
using (var dc = new ProposalDataContext(_ConnectionString))
{
scope.Complete();
}
}