How to deserailize data from xml file
-
Hi i have xml file stored in the database and I want to deserialize the xml file from database and want to retrieve the all nodes and child nodes of the xml file stored in database. can anybody help me please Be +ive
In case the XML file is stored as plain text in the database, you could just query it and create a DOM representation using
XmlDocument.LoadXml
method.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook
-
In case the XML file is stored as plain text in the database, you could just query it and create a DOM representation using
XmlDocument.LoadXml
method.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook