-
I have a working expression:
This is embedding the user supplied (albeit sanitized)
Throws an error:
Any suggestions? |
Beta Was this translation helpful? Give feedback.
Answered by
bahusoid
Jun 29, 2021
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
RobWalker
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
SqlString
is not properly created. You need to usenew SQLCriterion(SqlString.Parse(filter_sql), ...
to properly detect parameters in string. Or better useExpression.Sql(filter_sql, ...
methods which hide such implementation detail.