Ignore global query filter for joined entities
问题 Global query filters are very handy when implementing tenant and soft deletion features. But my problem is is that when i write a query with joins, for instance dbContext .entity1 .Include("entity2.entity3.entity4") .Where(something) .select(something) .toList(); and every one of those entities has global filters, then in the generated SQL i get for every JOIN a full Subquery where it selects all fields of that entity and checks for the global filters. But i dont want that. I want the global