Build a generic C# global query filter in EF Core 6
Budget: $250 – $750 USD
I'm looking for developer(s) to build a generic global query filter in c# using EntityFramework Core 6. The method must be stateless and allow different users to pass through.
Example: Generic method filters all Entities in application to allow [login to view URL] = userId variable.
Instead of the following snippet, create a generic filter that applies property TenantId and IsDeleted on all entities in the project.
```
[login to view URL]<Blog>().HasQueryFilter(b => [login to view URL]<string>(b, "_tenantId") == _tenantId);
[login to view URL]<Post>().HasQueryFilter(p => ![login to view URL]);
Example: Generic method filters all Entities in application to allow [login to view URL] = userId variable.
Instead of the following snippet, create a generic filter that applies property TenantId and IsDeleted on all entities in the project.
```
[login to view URL]<Blog>().HasQueryFilter(b => [login to view URL]<string>(b, "_tenantId") == _tenantId);
[login to view URL]<Post>().HasQueryFilter(p => ![login to view URL]);