XElement.Elements(XName name) 不返回 XElement.Elements() 中存在的名称

发布于 2024-09-16 23:35:50 字数 231 浏览 3 评论 0原文

正如您所看到的,schema.Elements 返回三个元素,其中之一是 EntityContainer 元素。 但是,当我尝试搜索指定“EntityContainer”(schema.)的元素重载时,它不会检索到任何内容。

替代文本

As you can see, the schema.Elements returns three elements one of whom is an EntityContainer element.
But when I try to search thru the Elements overload specifying the "EntityContainer" (schema.<EntityContainer>) it doesn't retrieve anything.

alt text

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

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

发布评论

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

评论(1

書生途 2024-09-23 23:35:50

找到答案了。

它没有返回任何内容,因为 edmx 文件中的 EntityContainer 元素属于我忘记在文件中导入的导入命名空间。

添加这一行解决了一切:

Imports <xmlns="http://schemas.microsoft.com/ado/2009/02/edm/ssdl">

Answer found.

It didn't return anything since the EntityContainer element in the edmx file belongs to an imported namespace I forgot to import in my file.

Adding this line solved everything:

Imports <xmlns="http://schemas.microsoft.com/ado/2009/02/edm/ssdl">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文