Thank you for the example
How ever, the statement produces the following error:
filter.PredicateExpression.Add(SBCG_RESFields.RES_EXT.SetExpression(exp), new string[] { "ICO", "BMP", "JPG", "PNG", "GIF" });
Error 241 No overload for method 'Add' takes '2' arguments
I have tryied other ways, but couldn't find the right way.
Also, is it possible to use user functions too in the DbFunctionCall?
For example, I have my user function in Oracle DB, called F_DENOM, who elimines all special carateres from the values in a column of type Varchar2?
Something like this:
IExpression exp = new DbFunctionCall("F_DENOM({0})", new object[] { TABLEFields.COLUMN});