我使用TransactionScope在Oracle上调用存储过程,并且IIS Express崩溃。
如果我删除了交易范围,它就像一个超级按钮。
using (var transactionScope = new TransactionScope())
{
·
· here I call the SP
·
transactionScope.Complete();
}
输出控制台显示了很多异常,但我怀疑它们是否与实际问题有关。