XElement.Elements(XName name) 不返回 XElement.Elements() 中存在的名称
正如您所看到的,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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到答案了。
它没有返回任何内容,因为 edmx 文件中的 EntityContainer 元素属于我忘记在文件中导入的导入命名空间。
添加这一行解决了一切:
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: