AutoFilterer icon indicating copy to clipboard operation
AutoFilterer copied to clipboard

AutoFilterer is a mini filtering framework library for dotnet. The main purpose of the library is to generate LINQ expressions for Entities over DTOs automatically. The first aim is to be compatible w...

Results 18 AutoFilterer issues
Sort by recently updated
recently updated
newest added

there is my code: ![image](https://user-images.githubusercontent.com/1549611/225569434-9001ff8c-827e-4076-bcb0-20b6ef51a8d0.png) ![image](https://user-images.githubusercontent.com/1549611/225569646-9516a019-763d-4728-8c94-6d1d41d5cbfe.png)

enhancement
autofilterer

I have an idea related to the "Custom Expression for a Property" feature mentioned in your documentation. My idea is to make the FilteringOptionsBaseAttribute support generics, which would make writing...

feature

I would like to just ignore sorting when an invalid sort option in provided. Today two possible exceptions are thrown [here](https://github.com/enisn/AutoFilterer/blob/develop/src/AutoFilterer/Types/OrderableBase.cs#L38) and [here](https://github.com/enisn/AutoFilterer/blob/develop/src/AutoFilterer/Types/OrderableBase.cs#L49). I would like to have an option...

enhancement
autofilterer

I have such filter: ```csharp public class StudentInfoShortResponseFilter : PaginationFilterBase { [CompareTo(nameof(StudentInfoShortResponse.FullName), nameof(StudentInfoShortResponse.AcademicGroup), nameof(StudentInfoShortResponse.StudentIdCard), nameof(StudentInfoShortResponse.Institute))] [StringFilterOptions(StringFilterOption.Contains)] [ToLowerContainsComparison] public string? Search { get; set; } } ``` And when I'm trying...

question

I have a sample Filter below which i'm trying to use a date range filter with in asp.net core 7, i'm not that this might be limitation of asp.net minimal...

question

I'm Currently trying out AutoFilterer and it works well with using FromBody but not with FromQuery Below are the full error message generated, i'm sticking to using FromBody for not...

question

### Exception occurred when using range filtering #### Project information:abp v8.1.3 ### filter model ``` public class MyFilterRequestDto : FilterBase { public virtual Range CreateTime { get; set; } }...

bug
autofilterer

I maintain a list of Roslyn Source Code Generators at [ignatandrei.github.io/RSCG_Examples/v2/docs/List-of-RSCG](https://ignatandrei.github.io/RSCG_Examples/v2/docs/List-of-RSCG) However, the source generators have been deprecated in favor of the new incremental generators , that allows better performance...