In my front end, I am using the .NET expression builder to generate an expression. I am then passing the string representation of the expression to an API, where it is parsed by Dynamic LINQ.
However, Dynamic LINQ does not recognize some of the operators, such as "AndAlso". Therefore, an expression generated by .NET resembling something like this fails:
"x => x > 1 AndAlso x < 5"
It would be very helpful if the library could support these operators and other common operators generated by the .net expression library.
In my front end, I am using the .NET expression builder to generate an expression. I am then passing the string representation of the expression to an API, where it is parsed by Dynamic LINQ.
However, Dynamic LINQ does not recognize some of the operators, such as "AndAlso". Therefore, an expression generated by .NET resembling something like this fails:
"x => x > 1 AndAlso x < 5"It would be very helpful if the library could support these operators and other common operators generated by the .net expression library.