I'v got a number of filter controls on my user-worklist screen. These filters control the criteria array that
is send to OpenWorklist from SourceCode.Workflow.Client.Connection. But i'm a little confused about the
usage of the WCLogical enum that is given to AddFilterField of the WorkListCriteria list.
WCLogical.And -> And 'field' =
WCLogical.OR -> Or 'field' =
WCLogical.AndBracket -> And { 'field' =
WCLogical.OrBracket -> Or { 'field' =
WCLogical.StartBracket -> { ?
WCLogical.EndBracket -> } ?
Can anyone explain these a little more to me?
For example i want the following sql be translated in a AddFilterField list:
select *
from users
where (country = 'NL' OR country= 'DE' OR country='EN')
AND (lastname= 'name1' OR lastname='name2' OR lastname='name3')
Thanks