Does anyone have any experience generating SSIS packages with a CozyRoc TableDifference component using Biml? <br>
<br>
The difficulty is that arrays are used for properties like NewInputLineageIds, Names, KeyOrders, CheckOptions, etc. These all show up in the Properties pane as Int32[] Array or String[] Array. If I define one of these like this:<br>
<br>
<CustomProperty Name="CheckOptions" DataType="Int32" IsArray="true"></CustomProperty> <br>
<br>
An error occurs when I try to open the generated package: An expected element "arrayElements" was not found. I'm not sure how to define an array like they're looking for in a CustomProperty. <br>
<br>