Kevin Krumwiede

Results 42 comments of Kevin Krumwiede

I deleted my original comment when I noticed your mention of MySQL. I'm not in front of a computer with VS on it right now, but I'll try to help...

@Trevortni In my case it's an after trigger because I want to compare the before an after values, and only veto the update if the column is true in both....

I noticed that it does the same thing with TileJson responses. Requesting `http://localhost/maps2/L286.json` produces the following. Note the incorrect `basename` and URLs. ```json { "name":"L286", "description":"", "legend":"", "attribution":"", "type":"overlay", "version":"1",...

@guardrex As you may have seen, my attempts to get this clarified were thwarted by ridiculously aggressive issue closure. I can answer the question myself based on the current behavior...

@guardrex > Generally, this paragraph isn't not about when/how `Dispose` is triggered. It's focused on what/when those methods would be executed, and I was told earlier (perhaps incorrectly) that they...

My expectation/assumption was similar to the two issues you linked. I find this behavior very surprising. I'm pretty new to Blazor and coming at it with the idea that the...

Well, hang on. Not all sync contexts are logically single-threaded, but [Blazor's is](https://learn.microsoft.com/en-us/aspnet/core/blazor/components/synchronization-context?view=aspnetcore-8.0). So the `Task A`/`Dispose`/`Task B` call sequence described in dotnet/aspnetcore#22932 really should be impossible.

I found similar developer confusion in dotnet/aspnetcore#22695. [This comment](https://github.com/dotnet/aspnetcore/issues/22695#issuecomment-641319401) is the heart of the matter. For anyone familiar with other single-threaded UI frameworks, this is a huge violation of the...

I think I've pieced together how it all works. I would not have had this question if I'd read something like this all in one place. I'm not sure where...

Maybe this or that related issue _is_ the right place to raise this question: why is the ASP.NET Core auth middleware in play at all if I'm not calling `AddAuthentication`/`UseAuthentication`?