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
Case sensitivity option is not applied inside lambda expression:
varinterpreter=newInterpreter(InterpreterOptions.LambdaExpressions|InterpreterOptions.DefaultCaseInsensitive).SetFunction("Now",(Func<DateTimeOffset>)(()=>DateTimeOffset.UtcNow)).SetVariable("List",newList<DateTimeOffset>());interpreter.Parse("list.Any(x => x > now())");
Will parse list but then throws Unknown identifier 'now' (at index 5)
The text was updated successfully, but these errors were encountered:
Case sensitivity option is not applied inside lambda expression:
Will parse
list
but then throwsUnknown identifier 'now' (at index 5)
The text was updated successfully, but these errors were encountered: