Can not apply operator '||' to operands of type 'System.Nullable`1[System.Boolean]' and 'System.Boolean'."

Hi Team,

Please help to fix below issue:
Can not apply operator ‘||’ to operands of type ‘System.Nullable`1[System.Boolean]’ and ‘System.Boolean’."
Template is in attachment.Template.docx (36.3 KB)

JSON Data

{
"JDEOrderDetails": {
"Header": {
"TotalAmount": 0.00
}
},
"Address":"India",
"CurrencySymbol": "$",
"IsCreditOrder": false
}

Below is code I am using:

ReportingEngine reportingEngine = new ReportingEngine();
JsonDataSource documentJsonData = new JsonDataSource(myData);
reportingEngine.BuildReport(templateDocument, documentJsonData);
templateDocument.Save(generatedDocument, PDF);

@ggarg904
This is the same issue as per another your post. As described at Accessing JSON Data, LINQ Reporting Engine loads Boolean JSON properties as bool?. It is impossible to apply the || operator to operands of types bool? and bool in pure C#, so is for LINQ Reporting Engine template expressions. So a bool? value should be transformed to bool before applying the operator. I have modified your template to show that.