Hi,
I will check it.
Hi,
I will check it.
Hi,
Methods of FileDescriptorAppService
are virtual
. you can override the method to use other containers.
Hi,
Sorry, I can't see any error or warning message here, can you share with me a simple project that reproduces the problem? Thanks.
Hi,
You want to execute SQL script right?
Can you check this: https://dejanstojanovic.net/aspnet/2020/september/seeding-data-in-ef-core-using-sql-scripts/
Hi,
I can't reproduce the problem, can you share a simple project with me? shiwei.liang@volosoft.com thanks.
Hi,
Are you sure that you can receive the message sometimes?
It looks like you have not added event handler to DI.
Can you try:
public class ReportEventHandler: IDistributedEventHandler<ReportEto> , ITransientDependency
{
private readonly IHubContext<NotificationHub> _hubContext;
public ReportEventHandler(IHubContext<NotificationHub> hubContext)
{
_hubContext = hubContext;
}
public async Task HandleEventAsync(ReportEto eventData)
{
await _hubContext.Clients.All.SendAsync("MessageReceived",eventData.Message);
}
}
Hi,
Can you try to debug the backend project and check the <YourProjectName>TenantDatabaseMigrationHandler
to see what is happening?
Also, please share the logs.