nreco / lambdaparser

Runtime parser for string expressions (formulas, method calls). Builds dynamic LINQ expression tree and compiles it to lambda delegate.
http://www.nrecosite.com/
MIT License
309 stars 55 forks source link

can be support = and == both pattern? #13

Closed rustbomber closed 5 years ago

rustbomber commented 6 years ago

For example, a=b and a==b, the effect on both is the same.

VitaliyMF commented 6 years ago

Yes, it is possible to handle 'a=b' in the same way as 'a==b'. However, this may be undesired in some cases, and it is better to have special option to enable this behavior (only when needed).

VitaliyMF commented 5 years ago

Added LambdaParser.AllowSingleEqualSign property to enable equal comparison with single sign.

Shipped in 1.0.9

rustbomber commented 5 years ago

Is great, thank you very much.