liangshiwei的活动

Hi,

The auth server will call back to your website and set cookie, BackendAdminApp.Host can determine the current tenant from the cookie.

Hi,

If you want to resolve tenants from subdomain first,You can add DomainTenantResolveContributor as the first priority, like this:

Configure<AbpTenantResolveOptions>(option =>
{
    option.TenantResolvers.AddFirst(new DomainTenantResolveContributor("{0}.mydomain.com"));
});

Please provide your logs file

Hi,

Try:

using (_currentTenant.Change(tenant.Id))
{
    await ServiceProvider.
        GetRequiredService<KantanDbMigrationService>()
        .MigrateTenantDatabasesAsync(tenant);
}

Hi, You can reffer microservices example: https://docs.abp.io/en/abp/latest/Samples/Microservice-Demo.

In the microservices example, the tenant management is deployed separately but does not have its own database.

You just set the connection string in appsetting.json, add and apply database migration.

Hi, You can reffer microservices example: https://docs.abp.io/en/abp/latest/Samples/Microservice-Demo.

In the microservices example, the product management module is deployed separately and has its own database.

See https://dba.stackexchange.com/questions/264/guid-vs-int-which-is-better-as-a-primary-key.

ABP use sequential GUID, It is good for indexing.

Yes , there are the same.

Try:

EntityFrameworkCore.DbMigrations instead of EntityFrameworkCore project. See https://docs.abp.io/en/abp/latest/Startup-Templates/Application#entityframeworkcore-dbmigrations-project

Hi

identity server clients are not isolated from tenants, The client can be a web application. Web application can be multi-tenant.

显示 4789 个条目中的 4681 到 4690 个.
Made with ❤️ on ABP v8.2.0-preview Updated on 三月 25, 2024, 15:11