I open a transaction in EF by calling:
db.Database.BeginTransaction() I do some things further, I want to perform operations with a large number of inserts through BulkCopy, but in such a way that if there were errors in EF or BC, everything would roll back.
Can this be done?
Tried to feed BC db.Database.CurrentTransaction , but does not accept ...