#1. I'm using document editor in my Blazor app to edit the generated report and I want to add a table to the editor with the generated data.
Justification:
I have a database with different tables. Depending on the user selection, the system select data from one of those tables and store in a variable. At the end I want to loop this variable and print each data in the form of table in the word editor. Example:
| # | First Name | Middle Name | Last Name |
|---|
| 1 | John | Usman | Thomas |
| 2 | Eline | Joseph | Kedir |
| 3 | Blal | Ahmed | kumar |
#2. how to insert image from local disk programmatically