"字段节点内的 XPath 选择无效。找不到..”将架构加载到数据集中时出错

发布于 2024-11-02 13:37:33 字数 1494 浏览 2 评论 0 原文

我想将 XML 架构 (Main.xsd) 添加到数据集,其中包含定义前一个架构中使用的复杂类型的另一个架构 (base.xsd)。

Main.xsd 有一个定义 xs:unique 的块,其中包含选择器和字段,以唯一地将特定元素定义为主键。 这是 Main.xsd:

<xs:schema id="NewDataSet" xmlns:xs="http://www.w3.org/2001/XMLSchema"  xmlns="http://tempuri.org/Main.xsd" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:msprop="urn:schemas-microsoft-com:xml-msprop"  targetNamespace="http://tempuri.org/Main.xsd"  attributeFormDefault="unqualified" elementFormDefault="qualified" version="3.0.4 01-07-2011">

<xs:include schemaLocation="base.xsd"/>

<xs:complexType name="Employees">
<xs:sequence>
  <xs:element name="EmployeeID" type="UE_SignedInt"/>
</xs:sequence>
</xs:complexType>

<xs:element name="Report" type=" Employees" />

<xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
<xs:complexType>
  <xs:choice minOccurs="0" maxOccurs="unbounded">
    <xs:element ref=" Report " />
  </xs:choice>
</xs:complexType>
<xs:unique name="ReportConst" msdata:PrimaryKey="true">
  <xs:selector xpath=".//Report" />
  <xs:field xpath="EmployeeID" />
</xs:unique>
</xs:element> 
</xs:schema>

类型“UE_SignedInt”在 main.xsd 中包含的 base.xsd 中定义。

现在,当我尝试将 Main.xsd 包含到数据集中时,它会抛出错误:“字段节点内的 XPath 选择无效。找不到 EmployeeID”,因为 EmployeeID 使用在 base.xsd 中定义的类型。

如果我对此元素使用一些基本类型(例如“xs:int”),则加载到数据集的效果很好。有人可以帮我解决这个问题吗?

I want to add an XML schema(Main.xsd) to a dataset which includes another schema(base.xsd) defining the complex types used in the former one.

The Main.xsd has a block defining xs:unique with selector and field to uniquely define a particular element as the primary key.
Here is the Main.xsd:

<xs:schema id="NewDataSet" xmlns:xs="http://www.w3.org/2001/XMLSchema"  xmlns="http://tempuri.org/Main.xsd" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:msprop="urn:schemas-microsoft-com:xml-msprop"  targetNamespace="http://tempuri.org/Main.xsd"  attributeFormDefault="unqualified" elementFormDefault="qualified" version="3.0.4 01-07-2011">

<xs:include schemaLocation="base.xsd"/>

<xs:complexType name="Employees">
<xs:sequence>
  <xs:element name="EmployeeID" type="UE_SignedInt"/>
</xs:sequence>
</xs:complexType>

<xs:element name="Report" type=" Employees" />

<xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
<xs:complexType>
  <xs:choice minOccurs="0" maxOccurs="unbounded">
    <xs:element ref=" Report " />
  </xs:choice>
</xs:complexType>
<xs:unique name="ReportConst" msdata:PrimaryKey="true">
  <xs:selector xpath=".//Report" />
  <xs:field xpath="EmployeeID" />
</xs:unique>
</xs:element> 
</xs:schema>

The type “UE_SignedInt” is defind in the base.xsd which is included in Main.xsd.

Now , when I try to include Main.xsd into a dataset, it throws an error: “Invalid XPath selection inside field node. Cannot find EmployeeID” as EmployeeID uses the type which is defined in the base.xsd.

If I use some basic type like “xs:int” to this element , the loading into the dataset works fine. Could anyone please help me to resolve this issue??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南笙 2024-11-09 13:37:33

当我将唯一块修改为:

<xs:unique name="ReportConst" msdata:PrimaryKey="true"> 
<xs:selector xpath="." /> 
<xs:field xpath="EmployeeID" /> 
</xs:unique>

The issue was solved when I modifed the unique block as:

<xs:unique name="ReportConst" msdata:PrimaryKey="true"> 
<xs:selector xpath="." /> 
<xs:field xpath="EmployeeID" /> 
</xs:unique>
忘你却要生生世世 2024-11-09 13:37:33

您需要指定 UE_SignedInt 元素的命名空间。

    <xs:element name="EmployeeID" type="xxx:UE_SignedInt"/>

You need to specify the namespace of the UE_SignedInt element.

    <xs:element name="EmployeeID" type="xxx:UE_SignedInt"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文