How to I use TryParse in a linq query of xml data?

后端 未结 4 1988
甜味超标
甜味超标 2020-12-15 10:21

I\'m working with in memory xml of daily stock market data, and I\'m getting the value \"8/221/19055\" for one of the dates. I see that TryParse is likely my best bet to che

4条回答
  •  隐瞒了意图╮
    2020-12-15 10:47

    It could be refactored to something like this with no need for functions and a simpler query which does the same job:

    var makeInfo = from s in doc.Descendants("quote")
        where s.Attribute("symbol").HasValue 
        && s.Element("LastTradeDate").HasValue 
        && DateTime.Parse(Element("LastTradeDate").Value) == targetDate
        select .... etc etc
    

提交回复
热议问题