What is most efficient way (code example) to do an XSL transformation on a DataSet in .NET 2.0?
+1
A:
This worked out pretty well performance-wise for me in the past:
Gurdas Nijor
2009-10-01 19:59:12
A:
Best way to do this is to save the DataSet to XML, then you have a simple XML document that you can run the XSL on.
I use this all the time for doing Excel exports
Mitchel Sellers
2009-10-01 19:59:49
I am concerned about the size of the XML document DOM (my DataSets can be rather large) when it's going to be loaded into memory for transformation, so I am trying to find a more efficient way of doing it.
moose-in-the-jungle
2009-10-13 16:47:54