Andreas Dirnberger

Results 87 comments of Andreas Dirnberger

related: https://github.com/cloudnativelabs/kube-router/issues/434

I added now a ValueConverter to the column, ```csharp protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity() .Property(o => o.Price) .HasConversion(v => v, v => Math.Round((double)v, 3)); } ``` It feels...

EF core is handling the `[Precision(3)] double` property as a `real(24)`, most likely using an c# `float` to load the value after and simple cast it double. This produces the...

@ajcvickers Here is the [demo project](https://github.com/Zetanova/efcore-float-precision)

I am using following for years now (since EF4 or so) and now parting to EF Core ``` query.Where(n => filter.Name.Equals(n.Name, StringComparison.InvariantCultureIgnoreCase)) ```` Of course it does not work anymore...

@ajcvickers I found some cast issue/bug in a projection and added one query into test project. There is an issue to query a `[Precision(2)] double? Value` field in a projection....

The current workaround is to use a httpS-proxy, where axios bug does not exist. @Joffcom How to add the private CA to the n8n docker image without created a own...

@Joffcom I tried now squid proxy over https_port In squids this is a TLS enabled port that assumes a direct TLS connection from the client. The hostname is taken over...

It seams that axios/n8n/nodejs/openssl in the dcoker images uses the SSLv3 (legacy should not be used) Stack trace: ``` NodeApiError: write EPROTO 68ABFA8117730000:error:0A00010B:SSL routines:ssl3_get_record:wrong version number:../deps/openssl/openssl/ssl/record/ssl3_record.c:354: at Object.execute (/usr/local/lib/node_modules/n8n/node_modules/n8n-nodes-base/dist/nodes/HttpRequest/V3/HttpRequestV3.node.js:1571:35) ......

The mqtt trigger node and publishing over QoS 0 and 1 worked fine in my tests. Around 100 messages got processed.