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

Hi, I want to use SoftDelete pattern. But, sometimes we may need to deleted entities. It should work per query. Example: ``` DbContext.Set().AsQueryable().DisableFilter("SoftDeleteFilter").Where(u => u.DeletionTime > SOME_TIME).ToList(); ``` Is this...

Here is the use Case class OrderDiscount { public int OrderId {get;set;} public int LineNo {get;set;} public int DiscountCode {get;set;} public double Amount {get;set;} ..... } class SalesOrder { public...

First of all: thank you for this package, really nice! I'm using the soft delete filter functionality, but I'm currently stuck on an exception that's being thrown when using the...

Hi, I got an exception on this case. I have debugged, I see the method below does not return a proper column for a property of ComplexType. ``` C# private...