4

我创建了 xsd:

<?xml version="1.0" encoding="utf-8"?>
<xs:schema targetNamespace="test" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="Extension">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="parent">
          <xs:annotation>
            <xs:documentation></xs:documentation>
          </xs:annotation>
          <xs:complexType>
            <xs:sequence>
              <xs:element minOccurs="1" maxOccurs="unbounded" name="parentItem">
                <xs:complexType>
                  <xs:sequence>
                    <xs:element name="child">
                      <xs:annotation>
                        <xs:documentation></xs:documentation>
                      </xs:annotation>
                      <xs:complexType>
                        <xs:sequence>
                          <xs:element minOccurs="1" maxOccurs="unbounded" default="10" name="childItem" type="xs:integer" />
                        </xs:sequence>
                      </xs:complexType>
                    </xs:element>
                  </xs:sequence>
                </xs:complexType>
              </xs:element>
            </xs:sequence>
          </xs:complexType>
        </xs:element>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>

我想将此模式加载到 DataSet 中,然后编辑和创建 xml

所以我尝试用值 100 填充 childItem 元素:

  DataSet a = new DataSet();
  a.ReadXmlSchema(mySchema);
  a.Tables[3].Rows.Add(100);

然后我执行:

a.getXml()- 结果:

<Extension xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="test">
  <childItem xmlns="">100</childItem>
</Extension>

如您所见,它完全忽略了架构关系-在架构中,您可以看到 childItem 上方的每个父元素都是必需的,因此如果我将值添加到最深的子项中,我希望 xml 像:

<Extension>
   <Parent>
      <ParentItem>
        <Child>
          <ChildItem>100<ChildItem/>
        <Child/>
      <ParentItem/>
   <Parent/>
<Extension/>

我是否遗漏了什么,或者这是 DataSet 的标准行为?非常感谢我正在使用 c# 和 net4.0,winforms

4

1 回答 1

1

这是 DataSet 结构;除非您遵循层次结构并适当地提供 ID,否则您将无法获得所需的输出。如果您考虑过,您看不到扩展实体也是有原因的。

在此处输入图像描述

由于您只插入100,其中表的结构是两列,因此您会为 child_Id获得一个 NULL 值。该列允许空值,因此插入通过,因为空值满足外键约束。

要检查,如果你这样做:

 a.Tables[3].Columns[1].AllowDBNull = false;

在添加之前,您会看到此错误:

Error line 11:      a.Tables[3].Rows.Add(100);
Column 'child_Id' does not allow nulls.

如果你这样做:

a.Tables[3].Rows.Add(100, 0);

你得到:

Error line 11:      a.Tables[3].Rows.Add(100, 0);
ForeignKeyConstraint child_childItem requires the child key values (0) to exist in the parent table.

那么问题似乎是该工具添加的参照完整性列允许为空 - 没有选项可以克服这种行为。

于 2012-11-22T00:19:24.277 回答