I keep getting an error :

ExecuteNonQuery requires an open and available Connection. The connection's current state is closed.


using DAAB 3.0

using (TransactionScope scope = new TransactionScope(TransactionScopeOption.RequiresNew))
{
DataAccessArticle.UpdateArticleStatus(articleId, statusId);

base.UpdateStatusContentData(articleId, statusId);

scope.Complete();
}

There's no other transaction within my methods.

aNY HELP ?