Activities of "maliming"

hi

Configure<AbpExternalLocalizationOptions>(options =>
{
    
    options.SaveToExternalStore = false;
});

hi

I will check it again

Thanks

hi

Please update the CreateDatabaseAndGetConnection as below

   
private static SqliteConnection CreateDatabaseAndGetConnection()
{
    var connection = new SqliteConnection("Data Source=:memory:");
    connection.Open();

    // AdministrationServiceDbContext ()
    new AdministrationServiceDbContext(
        new DbContextOptionsBuilder<AdministrationServiceDbContext>().UseSqlite(connection).Options
    ).GetService<IRelationalDatabaseCreator>().CreateTables();
    
    // BlobStoringDbContext
    new BlobStoringDbContext(
        new DbContextOptionsBuilder<BlobStoringDbContext>().UseSqlite(connection).Options
    ).GetService<IRelationalDatabaseCreator>().CreateTables();
    
    // LanguageManagementDbContext ()
    new LanguageManagementDbContext(
        new DbContextOptionsBuilder<LanguageManagementDbContext>().UseSqlite(connection).Options
    ).GetService<IRelationalDatabaseCreator>().CreateTables();
    
    return connection;
}

Thanks.

hi

Razor page will be no problem. You can use it to test it now

Thanks.

hi

You are right. ABP will check your connection strings (SqlServerConnectionStringChecker) before saving to the database.

https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.EntityFrameworkCore.SqlServer/Volo/Abp/EntityFrameworkCore/ConnectionStrings/SqlServerConnectionStringChecker.cs#L14-L38

Thanks.

hi

Data always saved in Host database

  1. You can check ICurrentTenant.Id to see if the current tenant is correctly resolved.
  2. Has your entity implemented the IMultipleTenant interface?
  3. You can inject IConnectionStringResolver and try to ResolveAsync and see the result after changing the current tenant.

Thanks.

hi

Troubleshooting problems remotely will be slow and difficult

We always hope to reproduce the problem locally. Please share a minimal project so we can quickly confirm the problem after receiving it.

Thanks.

hi

You can use IsEnabledForGetRequests

Configure<AbpAuditingOptions>(options =>
{
    options.AlwaysLogSelectors.Add(info => Task.FromResult(info.Url != null && info.Url.Contains("api/my-api")));
});

Thanks.

hi

Can you share the project via https://wetransfer.com/

Run abp clean and zip the project.

Thanks.

hi

Can you share a template project to reproduce it?

liming.ma@volosoft.com

Thanks.

Showing 641 to 650 of 12006 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.3.0-preview. Updated on February 25, 2026, 07:12
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.