Andrew White

Results 281 comments of Andrew White

@marcelbeutner sorry for the slow reply. Did you find a solution or workaround? I plan to add a normalized tenant identifier to prevent these issues but for now I'd recommend...

Any luck working around this? If you can link me to a simple repo that recreates the issue I can take a closer look. Also, `WithPerTenantOption` for cookie name shouldn't...

Hi, take a look at this older sample: https://github.com/Finbuckle/Finbuckle.MultiTenant/tree/v6.9.0/samples/ASP.NET%20Core%203/PerTenantAuthenticationSample Check the app pipeline config and and the user of 'WithPerTenantAuthentication`. You'll see in the `appsettings.json` that each tenant has some...

Yep I agree with both of you. It's be a breaking change and I'm trying to group it in with some others for a major version bump.

:tada: This issue has been resolved in version 7.0.0 :tada: The release is available on [GitHub release](https://github.com/Finbuckle/Finbuckle.MultiTenant/releases/tag/v7.0.0) Your **[semantic-release](https://github.com/semantic-release/semantic-release)** bot :package::rocket:

@Thijs153 Looks great! I'm sorry I didn't realize a different PR I merged would cause conflicts. Can you resolve and I will merge ASAP? The conflicts should be very minimal.

Hi yes. It’s an implementation detail but you can inject `IMultiTenantContextSetter`. Look at the source in the middlewarere or `TrySetTenantInfo` and you’ll see how it can be used. I can’t...

Yes it is available to inject as an interface currently. For your use case it is the right approach (or you could mutate the tenant info on the context but...

Hi @fbjerggaard and @goforebroke Check out the Identity sample where I have the db design time factory in the data folder and and per-tenant scope for migration in program.cs. I...