EntityFramework.DynamicFilters icon indicating copy to clipboard operation
EntityFramework.DynamicFilters copied to clipboard

Global filtering for Entity Framework.

Results 24 EntityFramework.DynamicFilters issues
Sort by recently updated
recently updated
newest added

I have this inheritance: ``` C# public abstract class FeatureSetting { public int Id { get; set; } public virtual string Name { get; set; } public virtual string Value...

**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 Hi, we are using EntityFramework.DynamicFilters in our project and it works great. But...

- verison: 2.6.0 - attendee.cs ``` public class Attendee : FullAuditedEntity { #region Const Properties public const int BarcodeLength = 12; public const int CheckCodeLength = 6; public const string...

The `DynamicInvoke` method of `MulticastDelegate` is too poor. https://github.com/tangdf/EntityFramework.DynamicFilters/blob/7ed94eb3a45ff141f0c7ea8fbec9a405e53ca2f2/src/DelegateBenchmark/DelegateInvoking.cs#L10-L40 Benchmark results: | Method | Mean | Error | StdDev | |-------------------------------- |-----------:|----------:|----------:| | MulticastDelegate_DynamicInvoke | 528.562 ns | 2.5630 ns...

#132 Very rough example stuff for a possible fix to this

Hi! We have a number of applications which use a shared library to access a common database (Sql Server). However, each application would like to define it's own filters -...

I have a class Project that contains a collection of ProjectResourceMembers. My filter is defined like this: ``` //Security modelBuilder.Filter("ProjectFilter", (Project p, string resourceCode) => (p.ProjectResourceMembers.Any(x => x.ResourceCode.ToLower() == GetResourceCodeFromPrincipal(Thread.CurrentPrincipal))...

I'm trying to use EntityFramework.DynamicFilters for soft delete, and all entities for soft delete are implemented from BaseEntity. ` modelBuilder.Filter("SoftDelete", (BaseEntity e) => e.DeleteMark, false); ` The code blow works...

I've just checked out the source code and I can see there is a known issue (and unit test) for supporting relationships without having the foreign key specified on the...

Support is provided EF7 ?