Example #1
0
        public override object GetValue(IDictionary <string, object> evt)
        {
            var value = Arguments[0].GetValue(evt);
            var low   = Arguments[1].GetValue(evt);
            var high  = Arguments[2].GetValue(evt);

            return(!RxKqlCommonFunctions.EvaluateBetween(value, low, high));
        }
Example #2
0
        public override object GetValue(IDictionary <string, object> evt)
        {
            var value = Value.GetValue(evt);
            var low   = Low.GetValue(evt);
            var high  = High.GetValue(evt);

            return(RxKqlCommonFunctions.EvaluateBetween(value, low, high));
        }
Example #3
0
        public override object GetValue(IDictionary <string, object> evt)
        {
            var v    = Value.GetValue(evt);
            var low  = Low.GetValue(evt);
            var high = High.GetValue(evt);

            // Negate the return from this Expression, as it's NOT between.
            return(!RxKqlCommonFunctions.EvaluateBetween(v, low, high));
        }