我正在使用SQL Server和ASP.NET。我有以下功能:
Using js = daoFactory.CreateJoinScope()
Using tran = New Transactions.TransactionScope()
'...
tran.Complete()
End Using
End Using
但是,例外-事务管理器已禁用其对远程/网络事务的支持。'被抛出。
JoinScope的描述:
Public Class JoinScope
Implements IJoinScope
Implements IDisposable
'...
End Class
我已经在具有相同环境的另一个应用程序中以这种方式工作,没有问题,但是在这里我遇到了这个问题。我该怎么做才能解决此问题?