Activities of "liangshiwei"

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,

Because the IdentityServer also is an Event consumer, but the front-end connection to HttpApi.Host (SignalR server).

You need make HttpApi.Host as the only Event consumer

Hi,

Sorry, I don't know what's blocking you.

execute the script programatically its possible in ABP ?

This is possible, you can make SQL script as embedded files and execute the SQL script during program runtime

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.

Hi,

ABP provides data seed system: https://docs.abp.io/en/abp/latest/Data-Seeding

Is it suitable for you?

Hi,

Can you check this: https://github.com/abpframework/abp/issues/10303#issuecomment-992030630

Showing 4701 to 4710 of 6043 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 19, 2024, 12:56