Alessandro Calorì

Results 9 comments of Alessandro Calorì

@0xced gave me the inspiration to implement a different workaround (using Reflection) on the various `ServiceCollectionExtensions` classes we have in our shared libraries: ```csharp public static class ServiceCollectionExtensions { private...

I've been struggling with this for two hours. The CSRF_TRUSTED_ORIGINS array MUST INCLUDE the schema! ``` CSRF_TRUSTED_ORIGINS = ["example.com", "127.0.0.1:9000"] ``` should be ``` CSRF_TRUSTED_ORIGINS = ["https://www.example.com", "http://127.0.0.1:9000"] ```

There are none. I had to reimplement the Npgsql persistence interface to have a DbContext to freely use and access data.

I am using EFCore.BulkExtensions 8.0 btw.

There are two workarounds for this issue: - Define the primary key as a **public** property and just map it as a usual: `builder.HasKey(e => e.Id);`. - Define the primary...

You can achieve that by combining saga and compensate with retry.

I was able to get a better/complete trace: ``` [2023-04-11T08:19:53.267] [41803.063145] Unable to handle kernel execute from non-executable memory at virtual address 0000000000000000 [2023-04-11T08:19:53.273] [41803.063198] Mem abort info: [2023-04-11T08:19:53.278] [41803.071687]...

It is definitely an issue with SIP protocol: also connecting to the SIP service by means of Linphone triggers a kernel panic and the device restart.

You have to query the DbContext directly. An alternative would be to use a search index and query that instead.