0
maxim@kolychev.msk.ru created
This event handler don't work
public class TenantUpdatedHandler : IDistributedEventHandler<EntityUpdatedEto<TenantEto>>, ITransientDependency
{
public async Task HandleEventAsync(EntityUpdatedEto<TenantEto> eto)
{
//Not triggered
}
}
5 Answer(s)
-
0
This is my code for TenantCreatedHandler. It's triggered
public class TenantCreatedHandler : IDistributedEventHandler<TenantCreatedEto>, ITransientDependency { private readonly ITenantRepository _tenantRepository; public TenantCreatedHandler(ITenantRepository tenantRepository) { _tenantRepository = tenantRepository; } public async Task HandleEventAsync(TenantCreatedEto eto) { Tenant tenant = await _tenantRepository.GetAsync(eto.Id); ...
`
-
0
Hi,
What version and distributed event bus provider are you using?
-
0
Hi,
v.4.3.1 Local provider
-
0
-
0
This question has been automatically marked as stale because it has not had recent activity.