Currently in the [account management page](https://github.com/AspNetCoreFromZeroToOverkill/Auth/blob/develop/src/CodingMilitia.PlayBall.Auth.Web/Pages/Account/Index.cshtml.cs), because the username and the email are the same, when we change one we also change the other. This is not being done in a transaction, so the first might succeed and then the second fail. Note: this is the same behavior as the [default identity implementation](https://github.com/aspnet/AspNetCore/blob/master/src/Identity/UI/src/Areas/Identity/Pages/V4/Account/Manage/Index.cshtml.cs), but that doesn't make it great 😛 There's an open issue on the ASP.NET Core repo, so let's be on the lookout for it: https://github.com/aspnet/AspNetCore/issues/6613
Currently in the account management page, because the username and the email are the same, when we change one we also change the other.
This is not being done in a transaction, so the first might succeed and then the second fail.
Note: this is the same behavior as the default identity implementation, but that doesn't make it great 😛
There's an open issue on the ASP.NET Core repo, so let's be on the lookout for it: dotnet/aspnetcore#6613