app.UseAbpRequestLocalization();
app.Use(async (httpContext, next) =>
{
if (System.Threading.Thread.CurrentThread.CurrentCulture.Name == "ar")
{
System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.InvariantCulture;
}
await next(httpContext);
});
if (!env.IsDevelopment())
{
app.UseErrorPage();
}
How can we reproduce it?
I think the problem exists on gitlab runner at linux server.
hi
It seems you didn't use standard abp project.
We can't give you much advice.
We need the full steps to reproduce the issue.
hi
Is a new project created by CLI?
hi
According to the design of tiered projects, the Web project is a pure UI project similar to HTML projects, Angular, etc.
CustomConnectionProviderFactory, DashboardDataSourceStorage
That is to say, you can't use database-related services.
IEditableDashboardStorage
You can try to inject application service interfaces to call remote APIs.
how I can distinguish between tenants for the anonymous users without login
I think you can't do this.
OK, No problem.
How about app-pro?
abp new AbpDebugTest -t app-pro -u blazor -d ef -o AbpDebugTest -dbms SQLite