joh*_*y 5 2 c# mstest entity-framework transactions .net-core
我正在使用.Net Core 2.1编写集成测试我有一个看起来像这样的测试:
private TransactionScope scope;
[TestCleanup]
public void TestCleanup()
{
this.scope.Dispose();
}
[TestInitialize]
public void VerifyUsersHaveBeenSeeded()
{
var transactionOptions = new TransactionOptions {
IsolationLevel = IsolationLevel.ReadCommitted
};
//I've also tried using TransactionScopeOption.Required
this.scope = new TransactionScope(TransactionScopeOption.RequiresNew,
transactionOptions);
}
//Note I am using an MDF file during Testing.
protected AstootContext GetContext()
{
var optionsBuilder = new DbContextOptionsBuilder<AstootContext>();
optionsBuilder.UseSqlServer(this.ASTOOT_CONNECTION_STRING);
var context = new AstootContext(optionsBuilder.Options);
return context;
}
[TestMethod]
public async Task RestEzServiceVerifyUpdate()
{
var context = this.GetContext();
var expectedResult = context.Users.First();
var restEzService = GetDefaultService<User, UserDTO>(context);
var key = new object[] { expectedResult.Id };
var dto = await restEzService.Get(key);
var updatedName = "Updated";
dto.FirstName = updatedName;
var updatedDTO = await restEzService.Update(key, dto);
Assert.IsTrue(updatedDTO.FirstName == updatedName);
updatedDTO.Should().BeEquivalentTo(expectedResult,
o => o.Excluding(x => x.UniqueIdentifier).Excluding(x => x.FirstName));
context.Dispose();
}
Run Code Online (Sandbox Code Playgroud)
更新方法调用:
var entity = await this._context.FindAsync(id).ConfigureAwait(false);
this.applyDTOToEntity(entity, dto);
await this._context.SaveChangesAsync().ConfigureAwait(false);
Run Code Online (Sandbox Code Playgroud)
当它调用保存更改时,我收到错误:
System.InvalidOperationException:Connection当前具有已登记的事务.完成当前事务并重试.
我从上下文中调用的唯一地方是1.要在测试中获得预期结果,2.获取更新实体,3.保存更改.
我将transactionScopeOptions设置为Requires New,为什么我收到此错误?
Bac*_*cks 10
TransactionScopeOption.RequiresNew
尝试创建新事务.您确定,此时没有交易new TransactionScope
.
也许,你需要替换它 TransactionScopeOption.Required
您还使用async/await,因此添加到范围选项TransactionScopeAsyncFlowOption.Enabled
:
using (var scope = new TransactionScope(... ,
TransactionScopeAsyncFlowOption.Enabled))
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
1595 次 |
最近记录: |