使用 linq 从 XML 列检索的 XSD 填充树视图
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论