-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
null value smaller than any numeric #126
Comments
What result do you get? I suspect it is |
@bijington thank you for your reply. |
But below code does return |
take a look #128 |
@bijington any idea? |
Thank you for the submission, sorry I haven't had a chance to review it yet. It is on my queue but I don't have a huge capacity at the moment. I will aim to get to it soon though |
Component: Changes: 1. try to fix the code smell issue
Component: Changes: 1. fix code smell issue
Describe the bug
var expression = new expressive.Expression("[variable] < 500");
var result = expression.Evaluate(new Dictionary<string, object> { ["variable"] = null });
Expected behavior
result
should returnFalse
or just throw exception in my opinion?The text was updated successfully, but these errors were encountered: