System.
I'm querying data with parent/child result sets using Entity Framework and I want to export this data to an …
entity-framework xml-serialization entity eager-loading xmlwriterI am currently using XMLWriter to display an xml file. However I would like to know how I could export …
php xml xmlwriterI have this bit of code, which serializes an object to a file. I'm trying to get each XML attribute …
c# xml serialization xmlwriter xmltextwriterI am having problems with the Create method in XmlWriter. Even when i use the example from msdn, it will …
c# xml windows-store-apps xmlwriterI have this extension method public static string SerializeObject<T>(this T value) { var serializer = new XmlSerializer(typeof(…
c# xml-serialization xmlwriterBy default, someXmlWriter.WriteElementString("my-tag", someString); produces <my-tag /> I looked around XmlWriterSettings class for possible options that would …
.net xml xmlwriterI want to serialize my object to xml and then to a string. public class MyObject { [XmlElement] public string Name […
c# xml-serialization xmlwriterI am trying to write out the following element using XmlWriter <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:…
namespaces xmlwriterI am looking at these these two classes in C#: XmlTextWriter and XmlWriter. Can anyone explain the difference and tell …
c# xml xmlwriter xmltextwriter