Highlighting logic is not executed correctly when after an invalid expression, another invalid expression is entered.
The following exception is thrown when translating an expression with a nested member passed to a generic method call:
ArgumentException: 'Value' is not a member of type ' VesselInformation.VesselEventType'
Edit: ExpressionChanged event stops firing in R3 2021 which is a related regression that should be addressed.
Allow developers to add their own functions to the list of available functions in the RadExpressionEditor and then pass these functions to the LINQ runtime when the expression tree is built. Add support for custom Categories as well. Scheduled for:
The feature will be available in R1 2019, scheduled for the mid of January 2019.
Incorrect order of operations when brackets are used. Write 4*(3*2) + 1 in the code editor observed result: in the result preview the result is 28 expected result: the result should be 25 Workaround is to add brackets on every operation: (4*(3*2)) + 1