Hey there, is it possible to model an one-many rel...
# exposed
p
Hey there, is it possible to model an one-many relation which is owned by the "one" side? I'm try to rebuild the @OneToMany annotation of JPA (including cascade update + delete) but could not find a solution.
e
not sure if the DAO mode supports this, but if you use DSL with POJOs, you could use kotlin’s
observable
delegate to maintain the relationship
👍 1