XDocument 并读取 xsi:nil="true"给出“字符串未被识别为有效的日期时间”

发布于 2024-10-20 13:09:05 字数 324 浏览 5 评论 0 原文

愉快地阅读 XML,

var q2 = from c in xmlDoc.Descendants("Ticket")
         select new
                { Responded_Date = (DateTime)c.Element("Responded_Date") }

但是当标签为时,

<Responded_Date xsi:nil="true" />

我得到“字符串未被识别为有效的日期时间”。我不想使用空合并运算符,而只是将空值插入到数据表中

Happily reading XML with

var q2 = from c in xmlDoc.Descendants("Ticket")
         select new
                { Responded_Date = (DateTime)c.Element("Responded_Date") }

However when the tag is

<Responded_Date xsi:nil="true" />

I get "String was not recognized as a valid DateTime". I don't wish to use the null coalescing operator but simply to take the null and insert into datatable

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

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

发布评论

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

评论(2

九厘米的零° 2024-10-27 13:09:05

将 Responded_Date 声明为可为空的日期时间。

var q2 = from c in xmlDoc.Descendants("Ticket")
         select new { Responded_Date = (DateTime?)c.Element("Responded_Date") };

如果缺少 元素,将返回 null 值。

如果它是无效日期,您将收到 FormatException - “字符串未被识别为有效的日期时间。”。 将导致 FormatException。

Declare Responded_Date as a nullable datetime.

var q2 = from c in xmlDoc.Descendants("Ticket")
         select new { Responded_Date = (DateTime?)c.Element("Responded_Date") };

If the <Responded_Date> element is missing, a null value will be returned.

If it's an invalid date, you will get a FormatException - "String was not recognized as a valid DateTime.". <Responded_Date xsi:nil="true" /> will cause a FormatException.

娇俏 2024-10-27 13:09:05

Linq to XML 本身不支持 xsi:nil,另请参阅此 msdn 社交链接。作为解决方法,您必须手动检查,然后为日期分配一些默认值(即 DateTime.MaxValue),或者使用类投影而不是匿名类型并将 null 分配给可为空的日期时间?财产。

具有匿名类型(DateTime 类型的 Responded_Date

 select new
          { 
            Responded_Date = c.Element("Responded_Date").Value!="" 
                             ? (DateTime)c.Element("Responded_Date")
                             : DateTime.MaxValue
          }

具有自定义类投影(DateTime? 类型的Responded_Date):

 select new MyFoo()
          { 
            Responded_Date = c.Element("Responded_Date").Value!="" 
                             ? (DateTime)c.Element("Responded_Date")
                             : null
          }

Linq to XML does not natively support xsi:nil, also see this msdn social link. As a workaround what you will have to do is manual checking and then either assign some default value for your date (i.e. DateTime.MaxValue) or use a class projection instead of an anonymous type and assign null to a nullable DateTime? property.

with anonymous type (Responded_Date of type DateTime :

 select new
          { 
            Responded_Date = c.Element("Responded_Date").Value!="" 
                             ? (DateTime)c.Element("Responded_Date")
                             : DateTime.MaxValue
          }

with custom class projection (Responded_Date of type DateTime?):

 select new MyFoo()
          { 
            Responded_Date = c.Element("Responded_Date").Value!="" 
                             ? (DateTime)c.Element("Responded_Date")
                             : null
          }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文