Just wondering, How do you use the xml sql server datatype with c#? When I
made a dataset the xml column showed up in c# as a string. Do I have to
write valid xml code into the string in order for it to work right?
Marc Gravell - 17 Feb 2008 09:26 GMT
I general, you have acces to DbType.Xml and
SqlCommand.ExecuteXmlReader - however, it is entirely possible that
you need to treat it as a string within a DataSet. I've never really
properly used DataSet so I can't really guess...
Marc