Andrew White

Results 302 comments of Andrew White

Hi, sorry for the late reply. I was able to clone and reproduce the issue. I think this is a deep one and I'm not 100% what is going on....

Going to label this a bug and consider a few options any logic that happens after the multi tenant middleware runs on the "way out" of the pipeline will not...

Hi I'm not familiar with Hangfire jobs, but I think I can see what is happening. The DbContext(s) are being spun up with a null `TenantInfo` object. In normal cases...

Hi, `TenantInfo` isn't really stored in `HttpContext`, but rather in a global `IMultiTenantAccessor` instance which uses an `AsyncLocal` to store the current multitenant context. Do you have access to DI...

hi I'm sorry I'm not familiar with Ocelot but perhaps someone else will be able to help you. I see what you mean about performance as a concern. I'd probably...

Thanks for the suggestion. Seems like a good alternative method.

Hi! 1. Hi, for this this can simply override it with a call to `HasMaxLength` after `IsMultiTenant` on the "TenantId' property, which should result in the database migration reflecting the...

@ThatDeveloper so sorry I never replied to you here. I think there would be minimal perf impact based on what you described. However this library assumes a string for TenantId...

Hi, no current plans to implement per-tenant DI. A design decision early on was to go with a per-tenant Options oriented approach rather than separate DI. I know some have...

Hi @niravbhattsai You aren't missing anything, in that case the request is being routed to the controller with no tenant detected, and in my view I decided to show the...