I'm serializing DataSet
using GetXmlSchema() and GetXml() methods (code below), but in schema
and xmlData
there is no xsi:nil
or nillable
attributes for columns which are nullable. When deserializing how could I know that column is nullable?
XElement schema = XElement.Parse(dataSet.GetXmlSchema());
XElement xmlData = XElement.Parse(dataSet.GetXml());
Is there any way to get those attributes in serialized xml?