I have an XML file like this:
<billing_documents>
<billing_document>
<Field1>AAAAA</Field1>
<Field2>BBBBB</Field2>
<Field3>20180731</Field3>
<Field4/>
<billing_document>
<billing_documents>
(some field could be empty, like Field4 in this example),
and I need to read it and save the "FieldX" values in a Oracle table that has the same structure.
Field1 - Field2 - Field3 - Field4
Can anyone help me?
Thanks a lot in advance.
Luis
PS I'm using Visual Studio 2017.