Transaction not connected, or was disconnected error
问题 I am getting "Transaction not connected, or was disconnected error" error when the transaction is either committed/rolled back after doing a bulk insert (along with some other operations). using(var tran = Session.Session().BeginTransaction(IsolationLevel.Serializable)) { // do something fullSession.Session().CreateSQLQuery(query).ExecuteUpdate();// this query bulk insert in a temp db // do something else tran.Commit()/ tran.RollBack();// if transaction is active and not already rolled back