Hello again! I noticed that your lib doesn't support enums. I fixed it like this: - https://github.com/Kusumoto/PrimeNG.TableFilter/blob/master/PrimeNG.TableFilter/Core/LinqOperator.cs line 244 ```if (propertyType == typeof(bool) || propertyType == typeof(bool?) || propertyType.IsEnum)``` - https://github.com/Kusumoto/PrimeNG.TableFilter/blob/master/PrimeNG.TableFilter/Utils/ObjectCasterUtil.cs line 85 ``` if (property.PropertyType.IsEnum) { Enum.TryParse(property.PropertyType, value.ToString(), true, out var result); return result; // additional checks required } ```
Hello again! I noticed that your lib doesn't support enums. I fixed it like this:
if (propertyType == typeof(bool) || propertyType == typeof(bool?) || propertyType.IsEnum)