Base solution for your next web application
Open Closed

Retrieve current Tenant name #11212


User avatar
0
Mitch created

Is there a simple way of retrieving the current Tenant name either directly into a View or Controller?

(MVC DotNet Core)

Markdown is supported
Copy & paste or drag & drop images (max 30 MB per image)

1 Answer(s)
  • User Avatar
    1
    edarib created

    You can use: var tenant = await TenantManager.GetByIdAsync((int)AbpSession.TenantId);

    You can then get tenant.tenancyName

    Markdown is supported
    Copy & paste or drag & drop images (max 30 MB per image)