Activities of "liangshiwei"

Hi,

Could you share the full steps to reproduce? thanks.

Answer

Hi,

Do you have a clear timeline for the development?

Sorry, but there is no timeline for now, you can ask it here: https://support.abp.io/QA/Questions/3052/Your-feature-request

Am I correct in my understanding that I can implement this by using the following library? https://github.com/aspnet/AspLabs/tree/main/src/WebHooks

yes, you can try. but the ASPNETCore team hasn't updated it for a long time, so I'm not sure if it's available

Hi,

This is a bug of MAUI: https://github.com/dotnet/maui/issues/10068

You can solve it with: https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=powershell#enable-long-paths-in-windows-10-version-1607-and-later

Answer

Hi,

The feature is still on the roadmap: https://github.com/abpframework/abp/issues/4223

You can check this: https://github.com/talkingdotnet/ASPNETCore_WebhooksSample/

But the ASPNETCore team hasn't updated it for a long time, so I'm not sure if it's available

Hi,

We will fix the problem, and your ticket refunded.

Hi,

It works for me:

Server=localhost;Database=MyProjectName_test;user={user};password={password};TrustServerCertificate=True

[Dependency(ReplaceServices = true)]
public class MyMultiTenantConnectionStringResolver: MultiTenantConnectionStringResolver
{
    protected ICurrentTenant CurrentTenant { get; } 
    
    public MyMultiTenantConnectionStringResolver(IOptionsMonitor<AbpDbConnectionOptions> options, ICurrentTenant currentTenant, IServiceProvider serviceProvider) : base(options, currentTenant, serviceProvider)
    {
        CurrentTenant = currentTenant;
    }

    public async override Task<string> ResolveAsync(string connectionStringName = null)
    {
        var connectionString = await base.ResolveAsync(connectionStringName);

        if (CurrentTenant.IsAvailable)
        {
            connectionString = connectionString.Replace("{user}", "sa").Replace("{password}","admin@123456");
        }

        return connectionString;
    }

    public override string Resolve(string connectionStringName = null)
    {
        var connectionString = base.Resolve(connectionStringName);

        if (CurrentTenant.IsAvailable)
        {
            connectionString = connectionString.Replace("{user}", "sa").Replace("{password}","admin@123456");
        }

        return connectionString;
    }
}```

Hi,

I can't reproduce the problem, can you share a project that can reproduce this problem with me? shiwei.liang@volosoft.com thanks

Hi,

I think this is a new topic, please open a new ticket thanks.

Hi,

Should be:

https://github.com/NavneetProject/abp-commercial-docs/tree/{version}

Not https://github.com/NavneetProject/abp-commercial-docs/tree/1.0.0

Please try:

https://github.com/NavneetProject/abp-commercial-docs/tree/{version}

Showing 4171 to 4180 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 04, 2025, 06:41