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
I want to use following expression but it is throwing error "UnknownIdentifierException 'visualCount' ". Following expression is fine fine when select linq has only single property i.e. pageName or visualCount.
var options = InterpreterOptions.Default | InterpreterOptions.LambdaExpressions;
var interpreter = new Interpreter(options).SetVariable("courseList", courseList);
string expression = @"courseList.Select(x => new { pageName = x.PageName , visualCount = 5 })";
Lambda parsedExpression = interpreter.Parse(expression);
var result = parsedExpression.Invoke();
Note: I have tried every property, each time it worked for single property but not for multiple properties.
Please resolve this issue as I am currently blocked.
The text was updated successfully, but these errors were encountered:
Thank you @sachindevtomar for the bug report. This is a free and open source project, we cannot guarantee any kind of support, but any contribution and help is appreciated.
Hello Team,
I want to use following expression but it is throwing error "UnknownIdentifierException 'visualCount' ". Following expression is fine fine when select linq has only single property i.e. pageName or visualCount.
Note: I have tried every property, each time it worked for single property but not for multiple properties.
Please resolve this issue as I am currently blocked.
The text was updated successfully, but these errors were encountered: