.NET compression of XML to store in SQL Server database

后端 未结 4 1295
北海茫月
北海茫月 2020-12-19 17:26

Currently our .NET application constructs XML data in memory that we persist to a SQL Server database. The XElement object is converted to a string using ToString() and then

4条回答
  •  时光取名叫无心
    2020-12-19 18:04

    I think you should also re-test the XML column. It stores in binary, I know, not as text. It could be smaller, and may not perform badly, even if you don't actually need the additional features.

提交回复
热议问题