NullBooleanBehavior Parameter (Connect-Salesforce Cmdlet)
This property determines how the NULL values should be treated for the Boolean columns.
Syntax
Connect-Salesforce -NullBooleanBehavior string
Possible Values
IGNORE, FALSEData Type
cstr
Default Value
"IGNORE"
Remarks
By default, if an NULL value is occurred in a Boolean column, the driver will ignore the NULL value. * NullBooleanBehavior='IGNORE' the NULL value will be ignored for CUD operation while for the SELECT operation the driver will comapre it with the NULL value. * NullBooleanBehavior='FALSE' the NULL value will be converted to 'False' for the CUD operation and the SELECT operation.