Instructs the component to enclose in parentheses criteria groups joined with AND operator if they are separated by the OR operator for clarity of criteria representation in text form.
public System.bool ParenthesizeANDGroups {get; set;}
public: __property System.bool get_ParenthesizeANDGroups();
public: __property void set_ParenthesizeANDGroups(
System.bool value
);
'Declaration
Public Property ParenthesizeANDGroups As System.Boolean
'Usage
Dim instance As BaseSQLBuilder
Dim value As System.Boolean
instance.ParenthesizeANDGroups = value
value = instance.ParenthesizeANDGroups
Property Value
if false, the result SQL will be: "a >1 and b > 1 or a <= 1 and b < 0";
if true: "(a >1 and b > 1) or (a <= 1 and b < 0)".