I were using FileStream to Serialize an Object to Xml and Save to the disk
Stream str = new FileStream(@"serializedstate.xml", FileMode.OpenOrCreate)
XmlSerializer x = new XmlSerializer(typeof(GridState));
x.Serialize(str, new GridState
{
GridName= txtGridName.Text,
GridColumns = GetGridColumnStates()
});
This works fine and Xml file is generated on disk. How do I save serialized Object as Xml into a Sql Server 2008 database's XML column using Linq to SQL? And how to deserialize the same from database?
In sql you must have colum type XML and in linq the type of Colum must be XElement than you can manipulate throw Linq.
To serialize into an XElement
To deserialize