18 lines
503 B
C#
18 lines
503 B
C#
|
using Microsoft.AspNetCore.Http;
|
|||
|
|
|||
|
namespace MultiTenancySample.ServiceDefaults
|
|||
|
{
|
|||
|
public class TenantMiddleware(ICurrentTenant currentTenant, ITenantIdProvider tenantProvider) : IMiddleware
|
|||
|
{
|
|||
|
public async Task InvokeAsync(HttpContext context, RequestDelegate next)
|
|||
|
{
|
|||
|
string? tenantId = await tenantProvider.GetTenantIdAsync();
|
|||
|
|
|||
|
using (currentTenant.SetTenant(tenantId))
|
|||
|
{
|
|||
|
await next(context);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|