Frederik Nielsen

Results 35 comments of Frederik Nielsen

Made a pull request on this one. Easy little fix, that just does exactly what it should.

@k3z0 Could you please publish the latest release to nuget as to support the Raspberri Pi 4B properly? I tried manually using the latest source in my project and then...

That sounds like a perfect solution if you ask me

Did you change the database provider? I encountered this when I switched to npgsql, however setting the connection string to the correct format fixed this error.

I don't think depending on external infrastructure is such a big deal - There is already a dependency on a EventStore of some sort. It also isn't only an issue...

A thought I just had was that it could (should?) be configurable during startup whether Eventuous is "cluster-aware" or not - kinda like Quartz.NET does it. Then it would be...

Would probably be a pretty easy fix by prefixing the files with a number for sorting. This would probably be a good idea to do for sqlserver as well

Yes (sorta), I am logging every MongoDB call and the one to upsert the offending documents was never called However, digging deeper into the logs I noticed my container was...

This is a part of the handler that doesn't always run: ``` public class RegistrationProjections : EventHandler { public RegistrationProjections() { On( async ctx => await new Registration { ID...

I understand, however that would require quite the refactor in my handlers. I will try to add some more debug logging and try to dig deeper into it, and maybe...