A
Andreas Pfanner
Hello,
Is the following code handled different in .NET 1.1 and .NET 2.0?
public SqlTransaction BeginTransaction()
{
return this.BeginTransaction(IsolationLevel.Unspecified, null);
}
It seems that running this code and starting a transaction under 2.0 we run
into locking issues if more than one transaction should be opened at the
same time, while running on 1.1 there are no problems. Does it make a
different to use IsolationLevel.Unspecified there?
Any hint would be great.
Thanks!
Best Regards,
Andreas Pfanner
Is the following code handled different in .NET 1.1 and .NET 2.0?
public SqlTransaction BeginTransaction()
{
return this.BeginTransaction(IsolationLevel.Unspecified, null);
}
It seems that running this code and starting a transaction under 2.0 we run
into locking issues if more than one transaction should be opened at the
same time, while running on 1.1 there are no problems. Does it make a
different to use IsolationLevel.Unspecified there?
Any hint would be great.
Thanks!
Best Regards,
Andreas Pfanner