Raul Almeida
Raul Almeida
**assertIsNotOnBaseObject** currently depends on throwing exception for its base case, that is, when the method is not one of Object's methods. That is very bad for performance because exceptions are...
The bug was in line 22 of TypeHandlerBase.cs: if (x != null && y != null) return false; This condition returns false when BOTH objects are non-null, which is the...
## Summary This PR implements System.Transactions.TransactionScope support for AseConnection, addressing feature request #237. ### Changes - **New `AseEnlistedTransaction` class**: Implements `IEnlistmentNotification` to participate in the two-phase commit protocol - **`EnlistTransaction(Transaction)`...