how to serialize class to database instead of file system c#

后端 未结 6 2400
南笙
南笙 2021-02-10 19:10

we can easily serialize class to flat file but if i want to serialize class to database then how could i do it and if it is possible then how can i deserialize data from db to c

6条回答
  •  轮回少年
    2021-02-10 19:23

    Using binary serialization to BLOB column, or using XML\Data contact\net Data contact to XML column.

    Edit: Binary example already given by @Saurabh. Data contract example provided by Peter Ritchie's blog.

提交回复
热议问题