How best to use XPath with very large XML files in .NET?

前端 未结 10 2125
自闭症患者
自闭症患者 2020-12-14 10:07

I need to do some processing on fairly large XML files ( large here being potentially upwards of a gigabyte ) in C# including performing some complex xpath queries. The prob

10条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-14 10:46

    How about just reading the whole thing into a database and then work with the temp database? That might be better because then your queries can be done more efficiently using TSQL.

提交回复
热议问题