Hello,
We are developing an Angular application where the user can create an UML diagram with the syncfusion diagram component. The user will be able to create new and modify existing diagrams, therefore the diagrams need to be stored in the database. We are using MSSQL database and communicating with it through a .NET core REST API with entity framework core. What would be the best way of storing the diagram in the database? Do we need to store the whole DiagramComponent with the whole prototype chain or is there a better way to store only the diagram data, from which the frontend can construct the UML diagram?
Thank you