EntityFramework.DynamicFilters
EntityFramework.DynamicFilters copied to clipboard
Global filtering for Entity Framework.
I am using EntityFramework.DynamicFilters in my application. I observed my application throw memory exception after 4 to 5 days. DynamicParamFilter hold memory in Gen2 and keeps on adding more Objects...
I have been using this as a filter with role, I need to filter with role or claim ## 1. Support a combination of filter with `Role `or `Claims `combination...
## 1. Description When dynamic filter is applied on eager loading with many-to-many relationship entities, getting below error. And this error had been occurring on MySQL database and its working...
## Description The documentation on dynamic filters mention this: > Filters should always follow any other model configuration - including the call to the base.OnModelCreating() method. It is best to...
``` public class RestrictedItemGlobalFilter : GlobalFilter { public IIdentityManager IdentityManager { get; set; } public override void ApplyFilter(DbModelBuilder modelBuilder) { modelBuilder.Filter("RestrictItemsBaseOnAccsess", (IAccessRestrictedItem x, List roles) => x.AccessType == AccessType.Public ||...
We accidentally updated DynamicFilters to v2.2 through Nuget and all our many of our queries did no longer work. We are only applying an IsDeleted filter globally and with version...
- Version 1.4.10.2 Entity framework 6.2 beta introduces a new feature that caches the compiled models; when using this feature "OnModelCreating" is not called. From: https://blogs.msdn.microsoft.com/dotnet/2017/05/23/announcing-ef-6-2-beta-1/  I was able...
### Description When using DbSet.Include(x => x.Relationship) where **Relationship** is a type which has a subclass, we receive a EntityCommandCompilationException. I've included the full exception below, and a test case...
Hi Thanks for this awesome framework! Unfortunately we have a problem when querying an unfiltered entity and eager loading (include) a filtered entity. - EntityFramework.DynamicFilters 3.0.1 - Entity Framework 6.2.0...
**DynamicFilters version**: 3.0.1 **EntityFramework version**: 6.1.3 **Database version**: SQL Server 2014 Example with failing unit test: https://github.com/mlyczek/EF.DynamicFilters.ConditionalEnableIssue In our project we have a query that uses `.Join()` operation. Both entities...