0
Mitch created
It's easy to retreive the Tenant ID with AbpSession.TenantId;
But what is the simplest way to retrieve the Tenant Name?
2 Answer(s)
-
1
Hi @mitch,
You can create your own session implementation including TenancyName and use it instead of AbpSession. You can take a look at https://aspnetboilerplate.com/Pages/Documents/Articles\How-To\add-custom-session-field-aspnet-core
-
0
Thanks for pointing me in the right direction.