根级别的 LinqPad 数据无效

发布于 2024-12-06 02:37:38 字数 95 浏览 0 评论 0原文

我试图执行 linq 命令 Users.Take (50) 并收到错误“根级别的数据无效。第 1 行,位置 1。”。为什么?

I am trying to execute linq command Users.Take (50) and get error "Data at the root level is invalid. Line 1, position 1.". Why?

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

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

发布评论

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

评论(2

春花秋月 2024-12-13 02:37:38

我猜测前 50 条记录中有一条包含一些不是真正 XML 的内容。

请注意,SQL 将允许您将简单文本保存到这些列,因此,如果您有像 Joe 这样的值,这将在 C#/VB 中正确显示,但是像 这样的值>乔不会。

I'm guessing one of the first 50 records contains something that isn't true XML.

Note, SQL will allow you to save simple text to these columns, so if you have values like <Name>Joe</Name> this will display correctly in C#/VB, but values like Joe won't.

栖迟 2024-12-13 02:37:38

得到错误“根级别的数据无效。第1行,位置1。”。为什么?

b/c 它不是有效的 XML

解决方法

在您的连接上,您可以:

将 XML 列映射到 .NET 字符串而不是 XElement

如何将 XML 视为字符串的屏幕截图

get error "Data at the root level is invalid. Line 1, position 1.". Why?

b/c it's not valid XML

Workaround

On your connection, you can:

Map XML columns to .NET strings instead of XElements

screenshot of how to treat XML as strings

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