marcingolenia

Results 10 comments of marcingolenia

Is there any progress on this? Maybe we can use records from C# 9?

@kunjee17 I've tried to do the serialization and deserialization using martenSerializer in isolation like this; ```fsharp let json = EventStore.martenSerializer.ToJson (Dummies.Dummy1 { IncrementedBy = 4 }) let o = EventStore.martenSerializer.FromJson(typeof,...

I've cloned the repo to investigate further. Did you try to build on Linux? I am running ubuntu, after paket restore I run dotnet build and this is what I...

Hi, I am back on this. I have added global.json ```json { "sdk": { "version": "3.1.404" } } ``` And the issues are still there. After I did the things...

I did not, I would do it in case of SocketException from NpgsqlConnector, not overflow. Would You accept a PR with; 1. sln fixes 2. References fixes in projects 3....

client-only, so In my gatsby site I am using this like this; ``` ``` I use "2.4.3" version of the library.

The app I've built is not that new, I am going to update it soon. For now it just works :) It is absolutely clear that I will have to...

Ok, I know now that the format string is translated to route template like so; So getting the path works: `linker.GetPathByName("get_houses_by", {|s0 = "test"|})` Now I am wondering if 1....

Same here; Ubuntu 22.04.3 LTS I am using this command instead to run it in separate processes as @lukaszkrzywizna advised. `"dev": "dotnet fable watch & vite &"` this works