tags:

views:

84

answers:

2

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:

http://www.tkachenko.com/blog/archives/000246.html

Gurdas Nijor
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
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