I'm receiving many different xml files but all of them have the same name of first element. For example:
<order>
. . .
. . .
</order>
I've about 20 different file content files that have to read and insert into database. I want to create typed dataset for all different files. That is't a problem. I've created a schema for all of them and Visual Studio have created the typed datasets. But my problem is that the name of a typed dataset must be the same as the name of first element of a xml file. So the name of all typed datasets must be the same and that is't possible.
Please help me solve this problem.
<order>
. . .
. . .
</order>
I've about 20 different file content files that have to read and insert into database. I want to create typed dataset for all different files. That is't a problem. I've created a schema for all of them and Visual Studio have created the typed datasets. But my problem is that the name of a typed dataset must be the same as the name of first element of a xml file. So the name of all typed datasets must be the same and that is't possible.
Please help me solve this problem.