我在尝试保存实体框架中的更改时收到以下错误-
System.Data.SqlClient.SqlException:不允许新事务,因为会话中还有其他线程在运行。
我已经看到了这个问题的各种答案,但我似乎无法让它们中的任何一个工作,基本上我在我的存储库内的事务中保存了大量项目,我必须遍历几个项目以删除它们并编写一个审计记录。
我为此看到的所有其他答案(例如Mark Staffords Answer)建议声明一个显式事务(我有)或仅在完成循环后调用保存更改(由于审计当前的工作方式,这不是一个选项 - 审计需要 ID 才能写入审计详情记录)。
每当在 delete 方法中调用“SaveChanges”时都会引发错误,见下文 -
public virtual void Save(DoseReturn oldDoseReturn)
{
// Get the datetime when the save started
DateTime saveStartTime = DateTime.Now;
Dictionary<string, object> oldValues = new Dictionary<string, object>();
Dictionary<string, object> newValues = new Dictionary<string, object>();
// Get the object context and open a new transaction
ObjectContext objectContext = ((IObjectContextAdapter)context).ObjectContext;
objectContext.Connection.Open();
DbTransaction transaction = objectContext.Connection.BeginTransaction();
// Use the transaction for all updates
using (transaction)
{
if (oldDoseReturn != null)
{
IDoseReturnStatusRepository statusRepository = new DoseReturnStatusRepository();
var list = statusRepository.AsQueryable().Where(x => x.DoseReturnID == oldDoseReturn.DoseReturnID);
foreach (var item in list)
{
statusRepository.Delete(item, objectRetrievedDateTime, objectContext, saveStartTime, out oldValues, out newValues);
}
context.SaveChanges();
// Get the relevant repository
IDoseReturnsRepository repository = new DoseReturnsRepository();
// audit and delete the object
repository.Delete(oldDoseReturn, objectRetrievedDateTime, objectContext, saveStartTime, out oldValues, out newValues);
context.SaveChanges();
}
}
try
{
// Conduct a final save, then commit the transaction
context.SaveChanges();
transaction.Commit();
}
catch (Exception ex)
{
// An error has occurred, rollback the transaction and close the connection, then present the error
transaction.Rollback();
objectContext.Connection.Close();
throw ex;
}
// Close the connection
objectContext.Connection.Close();
}
public virtual void Delete(T entity, DateTime? objectRetrievedDateTime, ObjectContext objectContext, DateTime saveStartTime, out Dictionary<string, object> oldValues, out Dictionary<string, object> newValues)
{
oldValues = new Dictionary<string, object>();
newValues = new Dictionary<string, object>();
if (entity == null)
{
throw new ArgumentException("Cannot update a null entity.");
}
string entityName = entity.GetType().Name;
if (!objectRetrievedDateTime.HasValue || !this.AuditsAfterRetieval(objectRetrievedDateTime, entityName, entity, saveStartTime))
{
this.DeletedEntityAudit(entity, out oldValues, out newValues);
context.Entry(entity).State = System.Data.EntityState.Deleted;
this.context.Set<T>().Remove(entity);
this.Audit(entity, entityName, "Delete", oldValues, newValues, true);
this.context.SaveChanges();
}
else
{
throw new Exception("Object cannot be saved as it has been amended in another thread");
}
}