We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public async Task SaveChangesAsync(bool ensureAutoHistory = false) public async Task SaveChangesAsync(bool ensureAutoHistory = false, params IUnitOfWork[] unitOfWorks)
The text was updated successfully, but these errors were encountered:
不歧义啊 public async Task SaveChangesAsync(bool ensureAutoHistory = false) 是同一上下文的 public async Task SaveChangesAsync(bool ensureAutoHistory = false, params IUnitOfWork[] unitOfWorks)这个是不同上下文,作者原本想的是做分布式事务的,但是.net core 取消了 dtc ,所以这个方法里面的分布式事务的功能相当于失效了。
Sorry, something went wrong.
No branches or pull requests
public async Task SaveChangesAsync(bool ensureAutoHistory = false)
public async Task SaveChangesAsync(bool ensureAutoHistory = false, params IUnitOfWork[] unitOfWorks)
The text was updated successfully, but these errors were encountered: