Posted on 01/08/2017 08:31:36
Hi Hans,
We try to avoid conversion an other manipulation of data when importing. However, you can provide null values instead.
If you are using the xml provider as source then you can mark columns with the isNull attribute, like in this example:
<?xml version="1.0" encoding="utf-8"?>
<tables>
<table tableName="MyItem">
<item table="MyItem">
<column columnName="Id"><![CDATA[1]]></column>
<column columnName="Number" isNull="true" />
</item>
</table>
</tables>
I hope this helps.
Best regards,
Morten