Closed voliveriourmobo closed 6 months ago
Which version do you use?
@voliveriourmobo I think this bug is introduced in the latest version 1.3.11
A fix in package 1.3.12 will be released soon.
Hi, in fact I am using the latest available version.
Great, thank you very much!
Hi,
I’m having a problem using your Dynamic LINQ lib regarding multiple where clauses.
When I try to filter a list using the query
Manufacturer.Equals("samsung",StringComparison.OrdinalIgnoreCase) and BatteryLevel < 20
, I get the following error:“No property or field 'BatteryLevel' exists in type 'Char'”
But If I change the order of the sentence to ‘BatteryLevel < 20 and Manufacturer.Equals("samsung",StringComparison.OrdinalIgnoreCase)’ it works just fine, is this the expected behavior?