Appending new XElement adds an entire XML to existing xml in stream
问题 I have an existing XML stored in the InternalFielStorage as.. <?xml version="1.0" encoding="utf-8" standalone="yes"?> <Root> <Books> <Author name="Sam" /> </Books> </Root> I am trying to append a "title" node under the "Author" node but the when saved, I am seeing a completly new xml added to the existing xml as.. <?xml version="1.0" encoding="utf-8" standalone="yes"?> <Root> <Books> <Author name="Sam" /> </Books> </Root> <?xml version="1.0" encoding="utf-8" standalone="yes"?> <Root> <Books>