Activities of "liangshiwei"

HI,

I will check it out.

Hi.

DataFilter only use shared database. If you use a tenant-separated database, DataFilter is not work.

Hi,

Because the data is isolated, The host cannot read the tenant's data. If you want read all tenant's data. you can get all tenants and loop get the data. like this:

var tenants = await _tenantRepository.GetListAsync();

foreach (var tenant in tenants)
{
    using (CurrentTenant.Change(tenant.Id))
    {
          var unit = await _unitAppService.GetAsync(Guid.Parse("ED9D4AC2-BC3F-1FA4-71D6-39F5F9048F20"));
    }
}

I can't reproduce your problem. Could your use CLI to create a free template to reproduce this problem? thanks.

Hi,

Can you provide steps and share some unit tests code? Thanks.

Hi,

Did you try clear cookies?

Hi

You can use client credentials, See : https://docs.identityserver.io/en/aspnetcore2/topics/grant_types.html#client-credentials

Hi,

You need to override the page to display and update extended property. see https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Overriding-User-Interface

Hi,

I can't reproduce your problem, can you provide steps to reproduce. I think there is something wrong with your migration file, it has nothing to do with the abp version

Instance failure

Please check your database server.

Showing 5741 to 5750 of 5968 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11