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

后端 未结 6 2254
南笙
南笙 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:25

    When serializing an object, it is often done to a stream. You can serialize to a memory stream, then read the bytes back and put them into a database.

    What serialization code do you have currently? It would be better to tell you how to modify it than to just give you the full code.

提交回复
热议问题