hi
Please generate the static proxy files in your web project.
Then you will see the script in webproject/abp/serviceproxyscript endpoint.
See https://abp.io/docs/latest/guides/add-module-to-microservice#using-the-static-proxy https://abp.io/docs/latest/framework/api-development/static-csharp-clients#code-generation
hi
Please use Zoom client join and share your screen
https://us05web.zoom.us/j/89617058236?pwd=Yxc0jPwQV4W4tLwYyQNnNO00Y0lBIo.1 Thanks
ok, can you share your project?
Thanks.
hi
Can you share the steps to reproduce it? Or share a project?
liming.ma@volosoft.com
Thanks.
hi
Can you enter window.webCMS in the browser console to check how many namespaces it contains?
Thanks,.
hi
I have fixed this in the Studio template; the next version will be no problem.
Thanks.
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.