1

我可能做错了什么,但我创建了一个简单的测试模式:

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="MyRoot">
    <xs:annotation>
        <xs:documentation>Comment describing your root element</xs:documentation>
    </xs:annotation>
    <xs:complexType>
        <xs:choice>
            <xs:element name="MyChildOne" minOccurs="0" maxOccurs="unbounded">
                <xs:complexType>
                    <xs:choice>
                        <xs:element name="SubChild" minOccurs="0" maxOccurs="unbounded"/>
                    </xs:choice>
                    <xs:attribute name="SomeAttribute" type="xs:string"/>
                    <xs:attribute name="SomethingElse" type="xs:string"/>
                </xs:complexType>
            </xs:element>
            <xs:element name="MyChildTwo" type="xs:string" maxOccurs="unbounded"/>
        </xs:choice>
    </xs:complexType>
</xs:element>

一个根,两个孩子(一个可选)。

我从 VS2010 运行 Xsd2Code,生成的代码创建了两个“根”类(MyRoot 和 MyChildOne),而没有创建预期的 MyChildTwo。我本来希望有一个带有 MyRoot.MyChildOne 的模型......

这是生成的代码:

using System;
using System.Diagnostics;
using System.Xml.Serialization;
using System.Collections;
using System.Xml.Schema;
using System.ComponentModel;
using System.Collections.Generic;


public partial class MyRoot
{

    private List<object> itemsField;

    public MyRoot()
    {
        this.itemsField = new List<object>();
    }

    public List<object> Items
    {
        get
        {
            return this.itemsField;
        }
        set
        {
            this.itemsField = value;
        }
    }
}

public partial class MyRootMyChildOne
{

    private List<object> itemsField;

    private string someAttributeField;

    private string somethingElseField;

    public MyRootMyChildOne()
    {
        this.itemsField = new List<object>();
    }

    public List<object> Items
    {
        get
        {
            return this.itemsField;
        }
        set
        {
            this.itemsField = value;
        }
    }

    public string SomeAttribute
    {
        get
        {
            return this.someAttributeField;
        }
        set
        {
            this.someAttributeField = value;
        }
    }

    public string SomethingElse
    {
        get
        {
            return this.somethingElseField;
        }
        set
        {
            this.somethingElseField = value;
        }
    }
}

我不明白如何将其序列化为有效的(符合模式的)XML 文件...

感谢您在这方面教育我

因数

4

1 回答 1

1

如果你使用 xsd.exe 来生成这个类,它会给你同样的东西:

public partial class MyRoot {

    private object[] itemsField;

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute("MyChildOne", typeof(MyRootMyChildOne))]
    [System.Xml.Serialization.XmlElementAttribute("MyChildTwo", typeof(string))]
    public object[] Items {
        get {
            return this.itemsField;
        }
        set {
            this.itemsField = value;
        }
    }
}

除了使用已知的类型声明:

[System.Xml.Serialization.XmlElementAttribute("MyChildTwo", typeof(string))]

因此,如果您考虑一下,这是有道理的。因为您的子类型 2 是一个字符串,而字符串是 XSD 中的一个简单类型,您可以将 System.String 的实例添加到您的 Items 数组,然后使用上面的代码将其序列化。每个字符串将被包装在一个<MyChildTwo/>节点中。

更新

要完成这项工作,您需要创建类型,然后使用 XmlSerializer:

var root = new MyRoot();
root.Items = new object[2];
root.Items[0] = new MyRootMyChildOne { Items = new object[1], SomeAttribute = "test", SomethingElse = "test" };
root.Items[1] = "hello";

var ser = new XmlSerializer(typeof(MyRoot));
var memoryStream = new MemoryStream();
var xmlTextWriter = new XmlTextWriter(memoryStream, Encoding.UTF8);
var streamReader = new StreamReader(memoryStream, Encoding.UTF8);
ser.Serialize(xmlTextWriter, root);
memoryStream.Position = 0;

string xml = streamReader.ReadToEnd();

这为我们提供了以下 XML:

<MyRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <MyChildOne SomeAttribute="test" SomethingElse="test" />
    <MyChildTwo>hello</MyChildTwo>
</MyRoot>
于 2011-10-20T15:37:29.497 回答