Olaf_A
25 days agoNew Contributor III
Multiple DbWhere statement
Hi,
Does anyone have an example where multiple dbwheres on the same column are executed?
The syntax seems to support AND/OR, but I can't seem to get it working.
I have the following dbWheres (without the AND/OR part):
Dim dbWhereEntity As New DbWhere("Entity", dboperator.In, entityFilter)
Dim dbWhereResignationDate As New DbWhere("TermDate", dboperator.IsGreaterThan, dateEndOfMonth)
Dim dbWhereResignationDate2 As New DbWhere("TermDate", dboperator.IsEqualTo, Nothing)
Individually, the ResignationDate dbwheres seem to work.
The SQL statement needs to look something like this:
SELECT *
FROM MyTable
WHERE (TermDate > @DateEndOfMonth OR TermDate IS NULL)
AND Entity = 'MyEntity';
(I know I could build a SQL statement and execute that as a work-around, but I'm just curious how this works)
Any help is appreciated, thanks!