eclipse-store / bookstore-demo

EclipseStore BookStore Demo - Sample Application
https://eclipsestore.io/
Eclipse Public License 2.0
9 stars 3 forks source link

Full CRUD would be nice #4

Open abonhote opened 6 months ago

abonhote commented 6 months ago

Currently, we can only insert new books - we can't edit them, nor delete them.

changchengqin commented 3 months ago

Yes. Looking forward to a complete CRUD example with multiple object relationships.

In actual projects, there are still many principles that need to be followed, such as:

  1. Avoid establishing bidirectional relationships between models
  2. The official manual document provides several best practices, one of which is: Use Immutable data models. Because it can improve performance. However, if you want to update these Immutable data models, other objects that reference them need to be manually synchronized and stored.

I hope the project team can share more practical experience and skills, including modeling, modification, synchronization, updating, etc.

thks. @mstahv @mbarbero @netomi