Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
XOR
to translate some NOT
expressions
When neither the parent expression nor the inner one is a predicate, translate to: ```sql x ^ CAST(1 AS bit) ``` instead of ```sql CASE WHEN x = CAST(0 AS bit) THEN CAST(1 AS bit) ELSE CAST(0 AS bit) END ``` Contributes to dotnet#34001 for simple cases (NOT of BIT expressions).
- Loading branch information