C# Convert HTML to Excel Stream data

I can ble to convert from HTML to Excel file from below code. but is there option to convert from HTML to Excel stream? Becase, I need to convert this stream to bytes and need to store in db.

// Convert Word document to Excel Spreadsheet in C#
using (Converter converter = new Converter(“document.html”))
{
SpreadsheetConvertOptions options = new SpreadsheetConvertOptions();
converter.Convert(“outputpath/convertedSpreadsheet.xlsx”, options);
}

@nivas.svr

Please take a look at this topic. You can save output to stream.