worthy7

Results 98 comments of worthy7

Really could use some guidence on this, I just need to know what part of ABP manages firing of events. All I want to do is 1. On `EnqueueEventAsync` (extension...

Would I be correct in thinking I want to implement `IEventBus`? with a new `BackgroundJobEventBus` ? The implementation would mean all events are out of process... so I am not...

Nope. Not sure what I need to change exactly.

I think that using the BackgroundJob system for Events can be dangerous because it doesn't make a job for each handler, it makes one job which is then handled by...

im gonna bump this 😁

I think this is the missing piece that will solve the problem of quering data from multiple modules, which to me, seems like the biggest pain point of such distribulted...

I am guessing it is because of the json request, can we work around this?

I have also tried to set "Access-Control-Max-Age" via https://docs.microsoft.com/en-us/aspnet/core/security/cors?view=aspnetcore-5.0#set-the-preflight-expiration-time but it actually doesn't seem to be doing anyway. The response in the options does not contain date/expiration info.

Yea fair enough. I think I have to move my frontend onto my backend server instead of firebase to get rid of this. https://docs.microsoft.com/en-us/aspnet/core/security/cors?view=aspnetcore-5.0#set-the-preflight-expiration-time This did work by the way,...

> This is how i´ve implemented: > > ``` > public static class SqliteDemoDbContextConfigurer > { > public static void Configure(DbContextOptionsBuilder builder, string connectionString) > { > builder.UseInMemoryDatabase(Guid.NewGuid().ToString()); > }...