terrajobst / nquery-vnext

A Roslyn inspired rewrite of NQuery
MIT License
72 stars 16 forks source link

NOT IN(...) translates to IN(...) #26

Closed StevenThuriot closed 5 years ago

StevenThuriot commented 5 years ago

In the translated expression, the inequality ends up getting lost.

[NOT] IN (...) syntax always translates to an Equality expression, while NOT IN(...) should actually translate to a NotEqual one.

Please refer to pull request #25 😄

terrajobst commented 5 years ago

Fixed in #25.