使用 linq 从 XML 列检索的 XSD 填充树视图

发布于 2024-10-11 15:13:08 字数 738 浏览 2 评论 0原文

我有一个 xml 列,其中包含加载的 xsd 文件的内容。我正在使用 linq 检索文件

var xsd = from r in RegulatoryAuthoritySchema
    where r.XsdTypeID == 2
    where r.MajorSchemaVersion == 1
    where r.MinorSchemaVersion ==0
    where r.XsdStatusID == 2
    select r.XsdData;

我的第一个问题是我可以将 xsd 作为字符串返回,但不能作为格式良好的 xml 对象返回。

例如,如果我尝试将其解析为 XElement 或 XMLDocument,我会得到 '根级别的数据无效。第 1 行,位置 1。' 我假设这是因为它源自 xsd 而不是 xml 源。因此 XMLDocument 需要声明中包含 BOM。

我的第二个问题是使用返回的 xsd 作为 WPF 树视图的动态源。我见过通过在 XAML 中 xmldataprovider 资源的 XData 中定义 XSD 来显示在 WPF 树视图中的静态示例。 XMLDataprovider 有一个 source 属性,但这需要 URI,或者如果我可以对第一个问题进行排序,则有一个文档属性将需要 XMLDocument。

我的应用程序是 WPF4 并使用 MVVM,因此理想情况下,xsd 将表示为 ViewModel 的属性,然后将树视图绑定到该 ViewModel,但那是另一篇文章了。

I have a xml column containing the content of loaded xsd files. I am using linq to retrieve the files

var xsd = from r in RegulatoryAuthoritySchema
    where r.XsdTypeID == 2
    where r.MajorSchemaVersion == 1
    where r.MinorSchemaVersion ==0
    where r.XsdStatusID == 2
    select r.XsdData;

My first issue is that I can return the xsd as a string but not as a well formed xml object.

For example, if I try to parse it as an XElement or XMLDocument I get
'Data at the root level is invalid. Line 1, position 1.'
I'm assuming this is due to it being derived from an xsd and not xml source. So XMLDocument expects a BOM in the declaration.

My second issue is using the returned xsd as a dynamic source for a WPF treeview. I have seen static examples of XSDs being displayed in a WPF treeview by defining them in the XData of an xmldataprovider resource in the XAML. The XMLDataprovider has a source property but this takes URIs or there is the document property that would take an XMLDocument if I could sort the first issue.

My application is WPF4 and uses MVVM so ideally the xsd would be represented as a property of a ViewModel which the treeview was then bound to, but thats another post.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文