Kevin Hahn

Results 52 comments of Kevin Hahn

SQLite also supports this and I'd be interested to see support for it. https://sqlite.org/lang_upsert.html Edit: in v6 InsertOrReplace does this as a single operation now, so I'm happy with what...

I also ran into this issue. My workaround was this: ```C# e.WebView.CoreWebView2.Profile.SetPermissionStateAsync(CoreWebView2PermissionKind.Microphone, "https://0.0.0.1", CoreWebView2PermissionState.Allow); ``` instead of using the `PermissionRequested` event as it wasn't firing.