Given:
- Two similar and complex Schemas, lets call them XmlA and XmlB.
- We want to convert from XmlA to XmlB
- Not all the information required to produce XmlB is contained withing XmlA (A database lookup will be required)
Can I use XSLT for this given that I'll need to reference additional data in the database? If so what are the arguments in favour of using XSLT rather than plain old object mapping and conversion? I'm thinking that the following criteria might influence this decision:
- Performance/speed
- Memory usage
- Code reuse/comlpexity
The project will be C# based.
Thanks.