Saeed Nemati
Saeed Nemati
I have the same issue here. Based on the [Docs](https://mui.com/styles/basics/), `@mui/styles` is deprecated and it's not compatible with React 18 (soon to come) and `React.StrictMode` which we DO use. Thus...
@mvorisek I'm glad SQL Server was slow. I was forced to migrate to another RDBMS, and now I'm completely happy. I chose MariaDB. It was hard at first after 16...
> we have had to move to [nightly-esprima](https://www.npmjs.com/package/nightly-esprima) because of this @sergey-v9 what is that `nightly-esprima`? I searched it and it takes me back to the `esprima` repository itself.
Based on #52099 I went to [Security token events return a JsonWebToken](https://learn.microsoft.com/en-us/dotnet/core/compatibility/aspnet-core/8.0/securitytoken-events#recommended-action) and added `options.UseSecurityTokenValidators = true;` to my code. But it had no effect. This is my code: ```...
@martincostello can you guide me to a sample code that shows me how to rewrite my entire security to match .NET 8? I mean, instead of me trying to make...
@brentschmaltz we're using Keycloak, and we tested its token using jwt.io, and it was valid. I can create a test user and create a token to paste here. Actually I...
@brentschmaltz thank you for helping. I think it's an internal thing related to the .NET itself. We don't have `Bearer` hardcoded anywhere in our code.
For me adding that `this.Database.AutoTransactionBehavior = AutoTransactionBehavior.Always;` did not work. Still `SaveChanges` does not commit. Though in the log I see this: ``` info: 01/24/2023 13:20:54.512 RelationalEventId.CommandExecuted[20101] (Microsoft.EntityFrameworkCore.Database.Command) Executed DbCommand...
@roji, since creating a repro is time-consuming, can you please tell me **when** the auto-commit would do the job of committing? I mean, would it do it when the `DbContext`...
Well, after we prepared a MRE, we realized that it works just fine. As we investigated, it turned out to be a bug in our view that one colleague caused....