-
-
Notifications
You must be signed in to change notification settings - Fork 274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable QueryFilter for Root Tenant Globally #922
Comments
@AndrewTriesToCode Do you have an input what I could try or test to get this working? |
hi @eluvitie sorry for the slow reply You are hitting up against a design constraint within EFCore and the Finbuckle approach using global query filters. Here is something you can try that I've seen work well. Have a base Let me know what you think! |
hi @AndrewTriesToCode Thanks for your reply and sorry for my long response. I've been struggling to make this work. so i've updated my whole Project to use the newest versions of the Nuget Packages. So what i've tried to do is to add a ApplicationBaseDbContext which extends the BaseDbContext, this Context does not have any Multitenancy but holds all the DbSet definitions. Then i added a ApplicationDbContext which implements the Mutlitenancy and also extends the ApplicationBaseDbContext. here is the Code:
After this Implementation my MediatR Handler throws an Error when trying to List All Entries (for testing) via the Respository (i'm using the Ardialis Spec Package).
The Error is being thrown in the Microsoft.EntityFrameworkCore.Query.Internal.ExecuteCore function (https://github.com/dotnet/efcore/blob/3b5648db341fd230b2e83ff0e24fc579b6ee46a9/src/EFCore/Query/Internal/QueryCompiler.cs#L87) when calling compiledQuery(queryContext). The Error is a "Object reference not set to an isntance of an object" error. Am I Missing something during the manual setup for Multitenancy with the IMultiTenantDbContext? i've followed this part in the documentation: https://www.finbuckle.com/MultiTenant/Docs/v9.0.0/EFCore#adding-multitenant-functionality-to-an-existing-dbcontext I have not added the SaveChanges override yet, since i only need a read operation. I feel like i'm just missing a tiny but important detail.... Thanks again for your valuable time! |
After clearing my head it klicked.... I've missed to set the ITenantInfo manually... If you want to add these code snippets to your documentation feel free to use it. and if you have improvedments to my answer i'm very open for improvements! |
Hi! I’m glad you got it working! Sorry I realize my doc links above were missing so I added them in for future people. |
Hi there
In my web API I have a root tenant, which should be able to access all the data that the tenants have.
Here is some Information about the Project:
Currently I set on each query the IgnoreGlobalQuery() and then set manaully the Filter for the SoftDelete Flag. This approach works if i only load one Entity, the problem is when i try to load child elements, because i'd have to set the SoftDelete Filter for each related Entity or else it displays all the deleted child elements.
So here is my question, is there a way to disable the global filter queries for the tenantId just for one Tenant (in my case the root Tenant)?
In my Optinion a nice way would be to set the filter (or disable) it when the DbContext for the Tenant gets initialized.
Here is my BaseDbContext:
Thank for your help!
spent already a lot of time trying to figure out what the cleanest way is to achiev this.
The text was updated successfully, but these errors were encountered: