Activities of "liangshiwei"

Hi,

I could not reproduce the problem with the project you provided

What's your steps?

Hi,

I can create a tenant without any error

BTW, you can try :

using (var uow = _unitOfWorkManager.Begin(requiresNew: false, isTransactional: false))
{
    var tenantConfiguration = await _tenantStore.FindAsync(tenantId);
    if (tenantConfiguration?.ConnectionStrings != null &&
        !tenantConfiguration.ConnectionStrings.Default.IsNullOrWhiteSpace())
    {
        foreach (var migrator in _dbSchemaMigrators)
        {
            await migrator.MigrateAsync();
        }
    }

    await uow.CompleteAsync();
}

, can we use the linked account to link User A and User B

Yes you can,

Try:

dotnet nuget locals -c http-cache dotnet nuget locals -c temp

Hi,

You can add the module solution, then you can use the abp suite to generate code.

Hi,

Sorry, could you explain in it detail? thanks.

Hi,

Ok, I will check it

Hi,

As I said, typically application services use repositories or domain services and they have the ability to access databases.

It is almost indistinguishable from non-tiered:

  • Remove ...HttpApiClientModule from WebModule
  • Remove AbpAspNetCoreMvcClientModule from WebModule
  • Remove AbpHttpClientWebModule from WebModule
  • Add ..Application reference to the Web project and add ..ApplicationModule to the WebModule
  • Add ..EntityFrameworkCoreModule reference to the Web project and add ..EntityFrameworkCoreModule to the WebModule
  • Configure Auto API controllers:
Configure<AbpAspNetCoreMvcOptions>(options =>
{
    options.ConventionalControllers.Create(typeof(MyProjectNameApplicationModule).Assembly);
});

Duplicate of https://support.abp.io/QA/Questions/4547/Navigation-Property-for-IdentityUser-in-other-database-table#answer-3a098ea7-e930-14aa-4e43-430a3d73ad1d

ok, thanks.

Showing 41 to 50 of 2428 entries
Made with ❤️ on ABP v9.2.0-preview. Updated on January 14, 2025, 14:54