Hi, actually I'm developing with LLBLGen, and I using Transactions.
this.objAdapter = new DataAccessAdapter();
this.objAdapter.CommandTimeOut = 60;
this.objAdapter.CatalogNameOverwrites = new CatalogNameOverwriteHashtable(CatalogNameUsage.ForceName);
this.objAdapter.StartTransaction(IsolationLevel.ReadCommitted, "ArchivoprocesadoencabezadoBase");
....
ActionProcedures.CargarTransaccionesTarjetas(-1, this.objAdapter);
....
But, I need to use SqlBulkCopy to insert data from a text plain file in a temporal table, the I use the sp "CargarTransaccionesTarjetas", to validate the content and process the data. But I need get the Transaction used in LLBLGen, to use as parameters to the SqlBulkCopy. Is there some way to do it ?