Activities of "liangshiwei"

Hi

The public web site only provides MVC UI.

Hi,

I will try find a way

Hi,

Can you share a project that can reproduce the problem with me? shiwei.liang@volosoft.com. I will check it. thanks

Hi,

This is ok, but the service proxy and application configuration maybe change, like, you create a new feature, permission, or app service. You must re-copied the JavaScript file again.

You can use the ApplicationConfigurationScript and ServiceProxyScript endponts for developement and replace it with JS file for production.

And we have a static JS proxy system, you can check it: https://docs.abp.io/en/abp/latest/UI/AspNetCore/Static-JavaScript-Proxies

Hi,

Sorry, the Team license does not include source code.

You need to upgrade your license:https://commercial.abp.io/pricing

Sorry, I could not reproduce the problem, it might be related to your environment.

You can use the maui check to check your environment. see: https://github.com/Redth/dotnet-maui-check

Hi,

Sorry, but I think there is something wrong,

We never allow the team License to download source code. Check:https://commercial.abp.io/pricing

Also, while I'm on the topic of switching tenants, what's the best way to manually locate a tenant (in situations where you can't use a resolver) . Is there a better way than this. Using GetList with a filter seems a but clunky.

We have a ITenantStore interface, you can use it.

Hi,

Can you try cal the await UnitOfWorkManager.Current.SaveChangesAsync(); after await _storesAppService.CreateAsync(newStore);.

 // Change Tenant
using (CurrentTenant.Change(existingTenant.Id))
{
    // Create New Store
    var newStore = new StoreCreateDto
    {
        ExternalId = storeName,
        Name = storeName,
        Timezone = ecomStore.Timezone 
    };

    await _storesAppService.CreateAsync(newStore);
    await UnitOfWorkManager.Current.SaveChangesAsync();
}

Hi,

You can custom the events model.

See: https://documentation.openiddict.com/guides/index.html#events-model, https://github.com/openiddict/openiddict-core/issues/1477#issuecomment-1166658609

Showing 4771 to 4780 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 07, 2025, 08:20