Adds a condition to the WHERE clause of the query.
function Add(const Value: string; Enabled: Boolean = True): TDACondition; overload;
If you want then to access the condition, you should use Add and its name in the Name parameter.
The given example code will return the following SQL:
SELECT * FROM EMP
WHERE (JOB="MANAGER")
and
(SAL<2500)