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
You can serialize a class (out of the box) to binary form or to XML.
In the first case you get a byte[]
, and in the second you get a simple string
.
If you want to persist that in the database, just treat it as any other byte array or string (or XML, if your database natively supports that) that need to be sent to the database.