Closed
Description
openedon Jan 25, 2021
Since #10164, we have ConfigureAwait(false)
everywhere; this can cause issues in certain data binding scenarios, when accepting changes triggers a UI change, which is no longer executed on the UI thread (e.g. #22841).
We could specifically use ConfigureAwait(true)
in the code path leading to AcceptAllChanges (specifically in two places: DbContext.SaveChangesAsync, StateManager.SaveChangesAsync).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment