Micronaut Data JDBC ManyToMany Problem #1167
-
Not sure if this is a bug or if I'm using it wrong. I have an issue with a ManyToMany Relation between two entities. The relation is created correctly, but never deleted.
I'm able to connect an instance of B to A with the following code:
The following code should (imho) remove the relation between A and B:
But b is not removed from a. In the SQL logs I can see that table "a" and table "b" are updated. But the join table "ab" is not updated. What am I doing wrong? Btw. I'm using Micronaut 3.0.1. My example can be found here: https://github.com/sebplorenz/demo-jdbc-micronaut3 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
We don't support it as there is no way to tell which items have been added or deleted. |
Beta Was this translation helpful? Give feedback.
We don't support it as there is no way to tell which items have been added or deleted.