Hi,
I follow the Sandro Pereria following blog for Nil Value functoid:
https://sandroaspbiztalkblog.wordpress.com/2014/06/12/biztalk-mapper-working-with-nillable-values-xsiniltrue/
But I have two doubt in it :
The first doubt:
Here is the following input instance of xml schema:
<ns0:Employees xmlns:ns0="http://Schema.NilValueFunctoid_Input" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><Employee>
<ID xsi:nil="true"/>
<FirstName xsi:nil="true"/>
</Employee>
</ns0:Employees>
If you see in above input instance of xml schema , I have to add two things manually in my input schema:
first is http://www.w3.org/2001/XMLSchema-instance namespace and second is xsi:nil attribute in elements.
So my first doubt is that why we are adding manually these things for checking null values.
My second doubt is that in real world scenario what example describe the best null values in the concern of XML.
If we have .csv file and we convert it into XML through custom pipeline then how we put null values in .csv file so that
our xml schema recognise it.