0

我需要一些关于以下问题的意见/方向:

我需要一种将多个表中的行序列化为 XML 的方法,其中值表示为属性,而不是标签。我已经开始深入研究数据集的 WriteXML 方法,但我不确定是否可以按照我需要的方式自定义 XML。它将采用以下格式:

<?xml version="1.0" encoding="UTF-8"?>
<Import operatorName="ABC123">
    <customers>
        <customer id="12345" firstName="Abraham" lastName="Lincoln" dob="02/12/1809">
            <addresses>
                <address city="the city" state="the state" zip="12345" street="the street">
                <address city="the city 2" state="the state 2" zip="54321" street="another street">
            </addresses>
            <customerEncounters>
                <customerEncounter id="797979" date="01/01/2013" location="somewhere"> 
                    <customerRepresentative name="The Dude">
                    <mechanic name="Mr. Mechanic"> 
                </customerEncounter>
            </customerEncounters>
            <customerEncounters>
                <customerEncounter id="888888" date="01/15/2013" location="somewhere else"> 
                    <customerRepresentative name="The Dude">
                    <mechanic name="Mr. Mechanic"> 
                </customerEncounter>
            </customerEncounters>
        </customer>
        <customer>
           ....
        </customer>
    </customers>
</Import>

简而言之,表格如下:

客户 ID Fname Lname DOB

客户地址 ID 客户 ID 街道 城市 州 邮编

遇到 ID CustomerID 日期 Location MechanicID CustRepID

机械 ID 名称

客户代表 ID 名称

每个客户可以有许多地址和遭遇。

根据数据抓取,我不会获得大量客户(50 或更少)。这甚至可以使用数据集吗?还是有更资源友好的方式来做到这一点?

提前致谢。

4

1 回答 1

0

如果我正确理解您的问题,也许以下 MSDN 文章会很有用:

将列映射到 XML 元素、属性和文本

它解释了如何定义你的每个DataColumn值如何DataTables被序列化。

于 2012-10-30T20:20:55.770 回答