I have this xml
<root>
<employee>
<firstname>Francis</firstname>
<lastname>Ferns</lastname>
<email protected=\"1\"/>
</employee>
</root>
This when being read from an DataSet reads two datables where another table gets added for the email . This is how the dataset visual looks like.
Instead of reading the attributed column protected in another table i would like it to be apart of the employee table itself with the protected column preceded with a "." and the employee table.
Is there in any way i could define the dataset schema so that so that all attributes be read as a part of the parent table ?