Describe the bug
var expression = new expressive.Expression("[variable] < 500");
var result = expression.Evaluate(new Dictionary<string, object> { ["variable"] = null });
Expected behavior
result should return False or just throw exception in my opinion?