https://kotlinlang.org logo
#exposed
Title
# exposed
p

PoisonedYouth

07/11/2022, 8:00 PM
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

Endre Deak

07/12/2022, 9:16 AM
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
4 Views