Hi,
I know its not the way of doing this normally, but sometimes i want to add some query-text to a query which is a LLBLGen Pro - Collection.
I've for example the following for the WHERE clause:
AND DocID IN (
SELECT DocID
FROM Documenten
WHERE (DocContactID = 2 OR DocContactID IN (SELECT CGContactID FROM ContactGebr WHERE CGGebrID=12)
UNION
SELECT DocID
FROM Documenten, DocDoc, DocRoutes, DocRouteGebruikers
WHERE DDDocID2 = DocID
AND DDDocID1 = RouteDocID
AND RGRouteID = RouteID
AND RGGebrID = 12))
I know it's all possible to put this in a PredicateExpression but is there a way to add this standard SQL to a LLBLGenPro - Collection?