对象引用未设置到对象错误的实例

发布于 2024-11-05 16:37:57 字数 525 浏览 0 评论 0原文


有人可以帮我找出下面的代码有什么问题吗?

Messages = (
        from k in j.Descendants(xmlns + BLConst.MessageElement)
        select new KWI.Common.CLUE.BusinessEntities.Message()
        {
            type = (k.Attribute(BLConst.TypeElement) != null) ? (k.Attribute(BLConst.TypeElement).Value).ToString() : string.Empty,
            MessageText = (k.Element( xmlns + BLConst.MessageElement).Value).ToString()
        }
    ).ToList()

收到错误

我在 select new kwi....Message(){ .. }

Can somebody help me figure out what is wrong with the code below?

Messages = (
        from k in j.Descendants(xmlns + BLConst.MessageElement)
        select new KWI.Common.CLUE.BusinessEntities.Message()
        {
            type = (k.Attribute(BLConst.TypeElement) != null) ? (k.Attribute(BLConst.TypeElement).Value).ToString() : string.Empty,
            MessageText = (k.Element( xmlns + BLConst.MessageElement).Value).ToString()
        }
    ).ToList()

I get an error at select new kwi....Message(){ .. }

Thanks

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

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

发布评论

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

评论(2

各空 2024-11-12 16:37:58

k.Attribute(...).Value 为 null 或 k.Element(...) 为 null 或 k.Element(...) .Value 为空。

Either k.Attribute(...).Value is null or k.Element(...) is null or k.Element(...).Value is null.

弃爱 2024-11-12 16:37:57

您的 MessageText 选择已关闭 - k 已经是一个消息元素,但您试图从中选择一个消息元素,但它并没有存在 - 只需取值:

MessageText = k.Value;

Your MessageText selection is off - k is already a message element, yet you are trying to select a child message element from it which doesn't exist - just take the value:

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