J'ai examiné la méthode Dispose() de System.Data.SqlClient.SqlTransaction (en utilisant un décompilateur) :
protected override void Dispose(bool disposing)
{
if (disposing)
{
SNIHandle target = (SNIHandle) null;
RuntimeHelpers.PrepareConstrainedRegions();
try
{
target = SqlInternalConnection.GetBestEffortCleanupTarget(this._connection);
if (!this.IsZombied)
{
if (!this.IsYukonPartialZombie)
this._internalTransaction.Dispose();
}
}
catch (OutOfMemoryException ex)
{
this._connection.Abort((Exception) ex);
throw;
}
catch (StackOverflowException ex)
{
this._connection.Abort((Exception) ex);
throw;
}
catch (ThreadAbortException ex)
{
this._connection.Abort((Exception) ex);
SqlInternalConnection.BestEffortCleanup(target);
throw;
}
}
base.Dispose(disposing);
}
Pourquoi tout le monde dit dans les forums qu'il retourne dans la poubelle ? Où se fait le retour en arrière ?