You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install-PackageMasa.Contrib.Dispatcher.IntegrationEvents.Dapr//For example, use dapr to provide pub and sub capabilities, or you can choose other implementations by yourself
options.UseDapr();//Use Dapr to provide pub/sub capabilities, or you can choose other
23
+
options.UseUoW<CatalogDbContext>(dbOptions=>dbOptions.UseSqlServer("server=localhost;uid=sa;pwd=P@ssw0rd;database=identity"))//Use unit of work, recommended;
24
+
});
25
+
```
26
+
27
+
> CustomizeIntegrationEventLogService (custom local message service) needs to inherit IIntegrationEventLogService, and the parameters in the constructor must support getting from CI
28
+
29
+
1.2 Use the provided EF version of the local message service
options.UseUoW<CatalogDbContext>(dbOptions=>dbOptions.UseSqlServer("server=localhost;uid=sa;pwd=P@ssw0rd;database=identity"))//Use unit of work, recommended
0 commit comments