You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The OR operator precedence issue has been fixed. OR expressions are now properly wrapped in parentheses when they appear as operands of AND expressions.
### Changes Made
1. Modified `ParseBinaryExpression` in `ODataQueryBuilder.ExpressionParsing.cs` to track parent operator context
2. OR expressions are wrapped in parentheses when their parent operator is AND
3. Same fix applied to lambda parsing in `ODataQueryBuilder.LambdaParsing.cs` for Any/All expressions