Do you have any way to solve for the speed issue if I have the query return more than 25,000 records with 2 columns for each record. My code pretty simple only have:
Aspose.Words.DocumentBuilder builder = new Aspose.Words.DocumentBuilder(master);
builder.MoveToBookmark(bmName);
builder.StartTable();
for (each row in my dataset)
{
for (each column in my dataset) // I only have 2 columns
{
builder.InsertCell();
builder.Write(value of the cell);
ApplySomeMinorFormatForCell();
}
builder.EndRow();
}
It tooks me around 20 mins to return 1000 pages document.
Do you have any way faster than my way.
Thanks,
Tom.