I have a two dimentional array formed by iterating a data reader. Earlier i was using automation to write to excel and using range, i was able to write the contents of two dimentional array to excel in one shot. This improves the performance a lot because of only one interaction with excel. but came across a problem that my server does not have office installed, so am trying a different alternative using openxml(as i justneed to install only one dll in this case).
Online i saw few example of using the openxml, but i am not sure if there is a way to directly transfter the contents of two dimentional array to the worksheet. i don't want to iterate the datareader and update each cell by cell as i have 65 columns and almost 90000 rows.
So does the SDK offer any inbuild command to do this?