vote up 0 vote down star

If you have a null value in a field in a dataset and export it to xml it does "remove" the field tag .. anyway to avoid this..

flag

3 Answers

vote up 0 vote down

An empty tag does not have the same meaning as null, especially for strings. How would you make the difference if the tag was present but empty?

link|flag
null or empty is the same for in this case. – gusse.net May 27 at 12:58
vote up 0 vote down

Think of NULL as a state and everything else as a value. So if you want a blank value, just send in an empty string (single white space)

link|flag
vote up -2 vote down

you have to paint your method with an attribute that tells it to stay there. not near my winblows machine so cant give you the actual code. but would look something like this,

[XMLElement(IsNullable = true)]
myProperty {get;set;}
link|flag
-1: Note he's talking about a DataSet, so there's no property to put the attribute on. – John Saunders Jul 28 at 19:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.