对象引用未设置到对象错误的实例
有人可以帮我找出下面的代码有什么问题吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
k.Attribute(...).Value
为 null 或k.Element(...)
为 null 或k.Element(...) .Value
为空。Either
k.Attribute(...).Value
is null ork.Element(...)
is null ork.Element(...).Value
is null.您的
MessageText
选择已关闭 -k
已经是一个消息元素,但您试图从中选择一个子消息元素,但它并没有存在 - 只需取值: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: