If you're creating a bug/problem report, please include followings:
- ABP Framework version: v6.0.0
- UI type: MVC
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): no
Hi there.
Is there any way to use multi-tenant in project web.public
7 Answer(s)
-
0
hi
What is the purpose of using it?
-
0
hi
What is the purpose of using it?
I have multi-tenant and I want to display only data for every tenant in public site
-
0
hi
Did you use the
Tiered
project? Please check theappsettings.json
ofweb.public
if so, the
web.public
will get data fromapi
, which means you don't need to enable themulti-tenant
feature. -
0
hi
Did you use the
Tiered
project? Please check theappsettings.json
ofweb.public
if so, the
web.public
will get data fromapi
, which means you don't need to enable themulti-tenant
feature.hi I didn't use
Tiered
project -
0
I didn't use Tieredproject
The project already enabled the multi-tenant feature.
if (MultiTenancyConsts.IsEnabled) { app.UseMultiTenancy(); }
-
0
I didn't use Tieredproject
The project already enabled the multi-tenant feature.
if (MultiTenancyConsts.IsEnabled) { app.UseMultiTenancy(); }
Okay I know, but how I can distinguish between tenants for the anonymous users without login
-
0
how I can distinguish between tenants for the anonymous users without login
I think you can't do this.