Hi,
As mentioned in PM, the actual problem of Save transaction is "object reference is not set" during DataLayer.Save(). After some debugging, I found that if my web form contains
more than one BO and I save all of them in a loop (within transaction), the
2nd BO.Save() will be failed.
It is caused by the connection and transaction object is null at the point of code as below.
'-- UpdateRow
'-- Set the connection
If Me.CanConnectDirectly Then
If QueryInfo.IsTransactional Then
loCommand.Transaction = CType(Me.Transactions(QueryInfo.TransactionKey), SqlTransaction)
loCommand.Connection = CType(Me.Transactions(QueryInfo.TransactionKey).Connection, SqlConnection)
The cause of both references are null, I suppose, is caused by this code
'-- Get a clone to avoid thread locking
loCommand = loCommand.Clone()
'-- Some code here
'-- Dispose of the cloned command
loCommand.Connection = Nothing
loCommand.Dispose()
As I see the cloned command object is
assigned back to same variable. Then, the command.Connection is set to null as clean up.
What do you think? Please advice.
Thank you