mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-21 21:12:50 +01:00
fix(processor): fixes OR combination from bitwise or to sql query OR
fixes #101
This commit is contained in:
parent
cbf6759274
commit
11938c9b8a
@ -237,7 +237,7 @@ namespace Sieve.Services
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
innerExpression = Expression.Or(innerExpression, expression);
|
innerExpression = Expression.OrElse(innerExpression, expression);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user