Hi,
I'm trying to make a query like the following :
SELECT myFields
FROM myTable
WHERE MyFieldId = MyFunction(
(SELECT MyOtherId
FROM MyOtherTable
WHERE myFields = MyVariable)
)
I don't know how to put a subquery in a DBFunctionCall :
new DBFunctionCall("MyFunction({0})", new object[](??????????????????));
Thanks for your help.