tektipster79
Programmer
We have currently been using XSLT to transform data from SQL into an XML format we need, and have found performance to be slow. Instead of traversing an XML file with XPATH we have decided to create classes to represent the nodes (using xsd to generate the classes). Is there an easier or more performant way than using XSLT to get the XML I need to deserialize into the classes? Basically, is there a better way to map the database elements to the schema for the XML file?